关于LINK : fatal error LNK1104: cannot open file "LIBC.lib"的问题
写了一个代码。。#include <stdio.h>
#include <string.h>
char name[] = "aiwuyan";
void cc(char * a)
{
char output[8];
strcpy(output, a);
printf("%s\n",output);
}
int main()
{
cc(name);
return 0;
}
然后移除工程配置win32-release..
再点感叹号运行时就出现了。。
LINK : fatal error LNK1104: cannot open file "LIBC.lib"
请问各位大哥大姐。。这个怎么解决?