摘要: 使用code::blocks可以在64位windows7中完美进行C编程。 使用过程中发现,编写如下for循环代码时,有报错:#include <stdio.h>#include <stdlib.h>int main(void){ for(int count = 1; count <= 10; count++) printf("%d\n", count); printf("Finished!\n"); return 0;} 报错信息为:error: 'for' loop initial declaration 阅读全文
posted @ 2012-12-06 16:44 林燃 阅读(901) 评论(0) 推荐(0) 编辑