Void 的问题(函数指针返回)
下面的代码来源 C程序设计 (第3版) 当我编译的时候(DEV-C++)出现错误 3 C:\\测试\练习2.cpp `main' must return `int' 当我把main函数前面的 Void去掉,编译就能成功,请问这是为什么啊。。。。。。。 我看这本书上写的, 一般Void写上比较好么。。。而且书上例题,难道错了???? 请老师们给我个答案啊 #include <stdio.h> void main() { float score[][4]={{60,70,80,90},{56,45,65,23},{76,56,68,44}}; float *search(float (*pointer) [4],int n); float *p; int i,m; printf("enter the number of student: "); scanf("%d", &m); printf("The scores of No. %d are: \n",m); p=search(score,m); for (i=0;i<4;i++) printf("%5.2f\t", *(p+i)); printf("\n"); } float *search (float (*pointer)[4],int n) { float *pt; pt = *(pointer+n); return(pt); } |