C语言中error LNK2001怎么解决?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C语言中error LNK2001怎么解决?相关的知识,希望对你有一定的参考价值。
代码如下:
#include<stdio.h>
mian()
int num[10]=0,i;
char ch;
printf("Please enter some numbers:");
while((ch=getchar())!='\n')
if(ch<='9'&&ch>='0') num[ch-'0']+=1;
for(i=0;i<=9;i++) printf("num[%d]=%d\n",i,num[i]);
编译正确,执行的时候出现以下错误:
--------------------Configuration: Jin - Win32 Debug--------------------
Compiling...
jin.cpp
D:\VC++ 6.0\MSDev98\MyProjects\Jin\jin.cpp(10) : warning C4508: 'mian' : function should return a value; 'void' return type assumed
Linking...
LIBCD.lib(crt0.obj) : error LNK2001: unresolved external symbol _main
Debug/Jin.exe : fatal error LNK1120: 1 unresolved externals
执行 link.exe 时出错.
Jin.exe - 1 error(s), 0 warning(s)
以上是关于C语言中error LNK2001怎么解决?的主要内容,如果未能解决你的问题,请参考以下文章
c语言 调试错误想不通 error LNK2001: unresolved external symbol
c语言编写时出现error LNK2001: unresolved external symbol _start