编译该程序时,并未出错,不知为什么组建时,却出现如下错误提示。敬请指教。谢谢。
10-4-12 13:33#include<stdio.h>
void main()
{
int m,n;
for(m=1;m<10;m++)
printf("%4d",m);
printf("\n");
for(m=1;n<10;m++)
printf(" _");
printf("\n");
for(m=1;n<10;m++)
{
for(n=1;n<=m;n++)
{
printf("%4d",m*n);
}
printf("\n");
}
}
linking...
打印三角九九乘法表.obj : error LNK2005: _main already defined in 3.obj
Debug/3.exe : fatal error LNK1169: one or more multiply defined symbols found
执行 link.exe 时出错.
3.exe - 1 error(s), 0 warning(s)