#include
#include
int mian()
{
char c1,c2,c3,c4,c5;
printf("输入:");
scanf("%s",c1,c2,c3,c4,c5);
c1+=4;
c2+=4;
c3+=4;
c4+=4;
c5+=4;
printf("%c,%c,%c,%c,%c",c1,c2,c3,c4,c5);
return 0;
}
编译的时候显示:
Linking...
LIBCD.lib(crt0.obj) : error LNK2001: unresolved external symbol _main
Debug/程序111.exe : fatal error LNK1120: 1 unresolved externals
执行 link.exe 时出错.
程序111.exe - 1 error(s), 0 warning(s)
不知道是为什么??????