Debug/AFG.exe :fatal error LNK1169:one or more multiply defined symbols found
问题描述:
Debug/AFG.exe :fatal error LNK1169:one or more multiply defined symbols found
#include
void main()
{
int a,b;
int *pointer_1,*pointer_2;
a=100;b=10;
pointer_1=&a;
pointer_2=&b;
printf("%d,%d\n",a,b);
printf("%d,%d\n",*pointer_1,*pointer_2);
}
c的程序在vc++中就出现这种情况.如何在VC中正确的执行
答
语法没有问题,可能是VC++的原因,你新建一个项目,把代码复制过去试试试过了还是一样的错误,编译没问题就是运行的时候有出现这个问题这个问题一般是函数重复定义造成的,你检查一下项目里有没有其他cpp文件,有没有重复定义的函数和全局变量吧,如果没有我也不太清楚了>