问题如下:::请帮忙解决 谢谢 …
#include “stdio.h”
void main()
{
printf(“hello world!\n”);
}
————————————————————————————–
linking…
LIBCD.lib(wincrt0.obj) : error LNK2001:unresolved external symbol _WinMain@16
Debug/ass.exe : fatal error LNK1120: 1 unresolved externals
执行 link.exe 时出错
ass.exe – 1 error(s),0 warning(s)
>> 本文固定链接: http://www.vcgood.com/archives/3016
#include<stdio.h>
void main()
{
printf(“hello world!\n”);
}
想知道
————————————————————————————–
linking…
LIBCD.lib(wincrt0.obj) : error LNK2001:unresolved external symbol _WinMain@16
Debug/ass.exe : fatal error LNK1120: 1 unresolved externals
执行 link.exe 时出错
ass.exe – 1 error(s),0 warning(s)
这个是什么意思??
是函数库有问题么?
你用什么编译器?试试
#include<stdio.h>
int main()
{
printf(“hello world!\n”);
return 0;
}
我用的是在坛子里下的 VC++6.0
同样的程序 在 WIN-TC 上就能运行~ 但在 VC 上就运行不了~~
同样能在WIN-TC 上运行的程序在vc里就显示:
linking…
LIBCD.lib(wincrt0.obj) : error LNK2001:unresolved external symbol _WinMain@16
Debug/ass.exe : fatal error LNK1120: 1 unresolved externals
执行 link.exe 时出错
ass.exe – 1 error(s),0 warning(s)
怎么回事? 是我的系统问题还是软件问题?
请赐教