以下是引用张含韵在2006-8-10 9:00:04的发言:
#include <stdio.h>
#include <stdlib.h>
void search(float *p,int n)
{
int i;
printf("the scores of NO.%d\n",n);
for (i=0;i<3;i++)
printf("%4.2f\t",*(*(p+n)+i)); \\就是这个地方。
}
main()
{
float score[3][3]={{65,67,69},{80,86,84},{50,90,76,}};
search(*score,2);=====>应该改成sorce,因为传送的是数组名的首地址!
system("PAUSE");
}
小女子先谢谢了~~
[shadow=255,red,2]待到秋来九月八,我花开时百花杀。冲天香阵透长安,满城尽是黄金甲。 [/shadow]