#include
#define POCKETMONEY 10 //定义常量及常量值 int main() { /* POCKETMONEY = 12; //小明私自增加零花钱对吗?*/ printf("小明今天又得到%d元零花钱\n", POCKETMONEY); return 0; }
123