【好程式員筆記分享】C語言之變數的記憶體分析

來源:互聯網
上載者:User

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

#include <stdio.h>/* 1.記憶體定址由大到小,優先分配記憶體位址比較大的位元組給變數 2.變數越先定義,記憶體位址就越大 3.取得變數的地址:&變數名 4.輸出地址:%p 5.一個變數一定先進行初始化,才能使用 */int main(){    // 記憶體定址由大到小    int a = 10;    int b = 20;    int c;    // &是一個地址運算子,取得變數的地址    // %p用來輸出地址    // 0x7fff56f09bc8    printf("a的地址是:%p\n", &a);    // 0x7fff56f09bc8    printf("b的地址是:%p\n", &b);    // 0x7fff56f09bc4    printf("c的地址是:%p\n", &c);    // 0x7fff56f09bc0    //int d = c  + 1;    //由於變數c沒有經過初始化,所以直接拿來使用是不對的    printf("c的值是%d\n", c);    //c的值是1606416536    return 0;}/*int a; 與 int a=0 初始化區別*/void test(){    int a;    printf("a的值是:%d\n", a);    //a的值是:1606422622    {        int a=0;        printf("a的值是:%d\n", a);        //a的值是:0    }}

650) this.width=650;" title="image" style="border-top: 0px; border-right: 0px; border-bottom: 0px; border-left: 0px; display: inline" border="0" alt="image" src="http://s3.51cto.com/wyfs02/M01/5B/F1/wKioL1UXxNOQTPdfAAC_MavokSY110.jpg" "598" height="202" />

【好程式員筆記分享】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.