c 运行报错
c:\program files (x86)\microsoft visual studio\myprojects\proj\test00.cpp(7) : fatal error C1010: unexpected end of file while looking for precompiled header directive执行 cl.exe 时出错. 贴上代码 我爱鱼C! 发表于 2018-11-18 18:28
贴上代码
顺便贴上vside项目下的文件 #include<stdio.h>
#define OOX 10;
void main(){
int a,b;
a = OOX;
b = a*OOX;
printf("total = %d\n",total);
Compiling...
test.cpp
C:\Program Files (x86)\Microsoft Visual Studio\MyProjects\define\test.cpp(8) : error C2065: 'total' : undeclared identifier
执行 cl.exe 时出错.
test.obj - 1 error(s), 0 warning(s) 我爱鱼C! 发表于 2018-11-18 18:29
顺便贴上vside项目下的文件
#include<stdio.h>
#define OOX 10;
void main(){
int a,b;
a = OOX;
b = a*OOX;
printf("total = %d\n",total);
Compiling...
test.cpp
C:\Program Files (x86)\Microsoft Visual Studio\MyProjects\define\test.cpp(8) : error C2065: 'total' : undeclared identifier
执行 cl.exe 时出错. 阿毛。 发表于 2018-11-21 10:29
#include
#define OOX 10;
你没有加右花括号(}),还有,请不要用void main(),请使用int main()
页:
[1]