标签:style blog http color io os 使用 ar strong
使用gcc编译代码是报出
error: ‘for‘ loop initial declarations are only allowed in C99 mode
note: use option -std=c99 or -std=gnu99 to compile your code
错误,这是因为在gcc中直接在for循环中初始化了增量:
这语法在gcc中是错误的,必须先先定义i变量:
这是因为gcc基于c89标准,换成C99标准就可以在for循环内定义i变量了:
gcc src.c -std=c99 -o src
error: 'for' loop initial declarations are only allowed in C99 mode
标签:style blog http color io os 使用 ar strong
原文地址:http://blog.csdn.net/dongqinliuzi/article/details/39370881