|
1鱼币
本人使用这个软件 visual C++ 6.0的 知道的说下 感谢了
#include <stdio.h>
void mian()
{
int a, b;
a = 32767;
b = a +1 ;
printf("%d,%d\n", a, b);
}
检查结果
----Configuration: over - Win32 Debug--------------------Compiling...over.c
over.obj - 0 error(s), 0 warning(s)
运行后--------------------Configuration: over - Win32 Debug--------------------Linking...LIBCD.lib(crt0.obj) : error LNK2001: unresolved external symbol _mainDebug/over.exe : fatal error LNK1120: 1 unresolved externalsError executing link.exe.
over.exe - 2 error(s), 0 warning(s)
|
最佳答案
查看完整内容
是main 不是mian:lol:lol:lol:lol
|