博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
code::blocks10.05让C代码使用C99标准
阅读量:6245 次
发布时间:2019-06-22

本文共 567 字,大约阅读时间需要 1 分钟。

      使用code::blocks可以在64位windows7中完美进行C编程。

      使用过程中发现,编写如下for循环代码时,有报错:

#include 
#include
int main(void){ for(int count = 1; count <= 10; count++) printf("%d\n", count); printf("Finished!\n"); return 0;}

      报错信息为:

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

note: use option -std=c99 or -std=gun99 to comple your code

      解决方法如下:

      Settings

-> Compiler and debugger settings

-> Global compiler settings

-> Other options

-> 在编辑框中输入:-std=c99

-> OK 

转载于:https://www.cnblogs.com/ciske/archive/2012/12/06/2805328.html

你可能感兴趣的文章
eclipse.ini、flashbuilder.ini内存设置和堆栈非堆栈问题
查看>>
线程下变量-原子操作 __sync_fetch_and_add等等
查看>>
Java 远程调试
查看>>
android 一个小例子说明handler和AlertDialog的简单使用
查看>>
解密Redis持久化
查看>>
[转载]使用 CTTeleyphonyCenter 截获来去电及短信消息
查看>>
linux 防火墙命令
查看>>
okhttp3使用
查看>>
android 6.0 权限设置详解
查看>>
php面向对象编程
查看>>
Apache HTTPD 正向(forward)和反向(reverse)代理
查看>>
工厂模式的jdbc
查看>>
十三周三次课(6月21日)
查看>>
linux目录结构详细介绍
查看>>
分享微信开发Html5轻游戏中的几个坑
查看>>
NBU MediaServer DrivePATH Missing
查看>>
useradd/usermod -p 指定用户密码
查看>>
CSS第一天
查看>>
memcache与一致性HASH算法
查看>>
正则表达式引发的血案
查看>>