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

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

#include <stdio.h>
/*
 1.变量的作用域
 从定义变量的那一行代码开始,一直到所在的代码块结束
 2.代码块的作用
 及时回收不再使用的变量,为了提升性能
 */
int test()
{
    int v = 10;
    return 0;
}
int main()
{
    {
        double height = 1.55;
        height = height + 1;// 1.55+1
        printf("height=%f\n", height);
        //输出值:2.5500000
    }
    int score = 100;
    {
        int score = 200;
        {
            int score;
            score = 50;
        }
        printf("score=%d\n", score);
        //输出数值:200
    }
    printf("score=%d\n", score)
    //输出数值:100
    return 0;
}
例题:
#include <stdio.h>
int main()
{
    int a = 20;
    int score = a + 100;
    printf("%d\n", score);
    //输出值:120
    {
        int score = 50;
        {
            score = 10;
            printf("%d\n", score);
            //输出值:10
        }
        a = 10;
    }
    {
        score = a + 250;
        int score = 30;
        printf("%d\n", score);
        //输出值 30
    }
    printf("%d\n", score);
    //输出值:260
    return 0;
}

你可能感兴趣的:(程序员,include,target,blank,cccccc)