#include <stdio.h>
#define POCKETMONEY 10;
int main()
{
printf("小明今天又得到%d元零花钱\n", POCKETMONEY);
return 0;
}
第二行代码后面加了分号。