C中全域變數和函式宣告的認識

來源:互聯網
上載者:User

在C中可以定義全域變數,全域變數是在程式載入初始化時分配空間並進行初始化。在c代碼中定義/聲明全域變數的方式如下

1. int n;

    定義或者聲明(如果在其他檔案中已定義)全域變數。

 

2. int n = 10;

    定義全域變數並初始化。

 

3. extern int n;

    聲明在外部定義的全域變數。

 

4. static int n;

    定義靜態全域變數

 

5. static int n = 10;

    定義全域變數並初始化

 

注意:同一變數名在相同範圍內不能定義兩次,否則在link是報錯。

 

 

在C中可以聲明函數,格式如下

1. void display();

    聲明檔案內部或者檔案外部函數。

 

2. extern void display();

    聲明檔案外部函數。

 

3. static void display();

    static關鍵字對函式宣告沒什麼效果,等同於void display();

 

注意:C中定義函數時可以添加static關鍵字,使其成為靜態函數。靜態函數只可在當前檔案調用。反之沒有添加static關鍵字的函數為非靜態函數,可以在當前檔案和其他檔案調用。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.