pan305771669 发表于 2013-5-27 13:05:08

重昨天自学到现在一个例题都没对过%>_<%

#include <stdio.h>
#define PRICE 30;
{   

int num, total;
num = 10;
total = num * PRICE;
printf("total = %d",total);
}
--------------------Configuration: define - Win32 Debug--------------------
Compiling...
define.c
D:\C语言练习\define\define.c(4) : error C2449: found '{' at file scope (missing function header?)
D:\C语言练习\define\define.c(10) : error C2059: syntax error : '}'
执行 cl.exe 时出错.
define.obj - 1 error(s), 0 warning(s)
各位大大看看有哪里错了

a399634192 发表于 2013-5-27 22:53:49

居然没有main函数    楼主看书要从第一页看起   步子迈达了容易扯着蛋

鱼小C 发表于 2013-5-28 15:57:46

#define PRICE 30;后面有一个void main()的。
页: [1]
查看完整版本: 重昨天自学到现在一个例题都没对过%>_<%