【好程式員筆記分享】C語言之變數使用注意

來源:互聯網
上載者:User

標籤:include   程式員   cccccc   c語言   color   

變數使用注意2:#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;}

【好程式員筆記分享】C語言之變數使用注意

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.