求 大神帮忙看下我这个是为什么?
#include "stdio.h"void main()
{
int A[3][4]={{12,56,34},{-28,-45,-91},{38,45,77}};
int i,j,max,row,colum;
max=A[0][0];
row=0;
colum=0;
for(i=0;i<3;i++)
for(j=1;j<4;j++)
if(max<A[i][j])
{
max=A[i][j];
row=i;
colum=j;
}
printa("max=%d row=%d colun=%d",max,row,colum);
}
在打印输出的时候不报错打是在运行的时候就出现这个
--------------------Configuration: aaa - Win32 Debug--------------------
Linking...
aaa.obj : error LNK2001: unresolved external symbol _printa
Debug/aaa.exe : fatal error LNK1120: 1 unresolved externals
执行 link.exe 时出错.
aaa.exe - 1 error(s), 0 warning(s)