码迷,mamicode.com
首页 > 编程语言 > 详细

【好程序员笔记分享】C语言之for语句使用注意

时间:2015-03-31 01:06:22      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:blank   cccccc   include   程序员   target   

ios培训------我的c语言笔记,期待与您交流!

#include <stdio.h>
int main()
{
    /* 不要随便在for()后面写分号
    for (int i=0; i<5; i++);
    {
        printf("哈哈\n");
    }*/
    
    /* 错误:变量a的作用域不明确
     如果要在循环体中定义新的变量,必须用大括号{}包住
    for (int i=0; i<5; i++)
        int a = 10;
    */
    /* 错误
    for (int i = 0; i<10; i++, a++)
    {
        // a只能用在循环体{}中
        int a = 10;
    }*/
    /*
    int a = 3;
    for (int i=0, a= 5; i<5; i++)
    {
        int a = 2;
        printf("a=%d\n", a);
    //输出显示:
        a=2
        a=2
    }
        printf("a=%d\n", a);*/
        //输出显示:a=3
    // 最简单的利用for循环实现死循环
    // for(;;);
    return 0;
}

【好程序员笔记分享】C语言之for语句使用注意

标签:blank   cccccc   include   程序员   target   

原文地址:http://putongren.blog.51cto.com/9086263/1626558

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