今天做题做到最后,仍然报警告 ,但是怎么也找不出原因,最后试了下才知道是下面的错误。请大家以后也注意下。
#include <stdio.h>
int hello();
int main(){
for (int a=0;a<10;a++){
printf("当前是第%d行",a);
printf("hello\n");
hello();
}
}
int hello(){
printf("hello");
//return 0;
}
/*打印结果如下:
localhost:45循环控制for语句的基本用法 kele$ cc 45循环控制for语句.c
45循环控制for语句.c:16:1: warning: control reaches end of non-void
function [-Wreturn-type]
}
^
1 warning generated.
*/ |
|