在linux下编辑test.c文件,保存退出
#include
#include
int main(){
for ( int i = 0; i<= 100; i++ ) {
printf("complete:%3d%%\r",i);
fflush(stdout);
sleep(1);
}
}
[root@localhost ~]# gcc test.c -o test
test.c: In function ‘main’:
test.c:6: error: ‘for’ loop initial declaration used outside C99 mode
出现问题,上网搜了下,加参数-std=c99就没事了。
[root@localhost ~]# gcc test.c -o test -std=c99
参考网址:
阅读(1286) | 评论(0) | 转发(0) |