初学C语言第一天
#include <stdio.h>void main()
{
int a,b,sum;
a=50;b=45;
sum=a+b;
printf("sum=%d\n",sum);
}
---------------------------------------
Linking...
sum.obj : error LNK2005: _main already defined in printf.obj
Debug/第一章.exe : fatal error LNK1169: one or more multiply defined symbols found
执行 link.exe 时出错.
第一章.exe - 1 error(s), 0 warning(s)
--------------------------------------------------------
初学C第一天 求救。。。。。怎么回事有一个错误 哪里出错了