码迷,mamicode.com
首页 > 其他好文 > 详细

error: 'for' loop initial declarations are only allowed in C99 mode

时间:2014-06-22 23:43:01      阅读:233      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   http   color   

转自:http://blog.csdn.net/imyang2007/article/details/8296331

 

使用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循环中初始化了增量:

for(int i=0; i<len; i++) {  }  

两个解决办法:

1)这语法在gcc中是错误的,必须先先定义i变量:

int i;  

for(i=0;i<len;i++){  }  


2)这是因为gcc基于c89标准,换成C99标准就可以在for循环内定义i变量了:

gcc src.c -std=c99 -o src

error: 'for' loop initial declarations are only allowed in C99 mode,布布扣,bubuko.com

error: 'for' loop initial declarations are only allowed in C99 mode

标签:style   class   blog   code   http   color   

原文地址:http://www.cnblogs.com/mmcmmc/p/3800131.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!