學點C語言(34):函數

來源:互聯網
上載者:User

1. 局部變數:

局部變數也叫自動變數,它聲明在函數開始,生存於棧,它的生命隨著函數返回而結束.

#include <stdio.h>

int main(void)
{
  auto int i = 9; /* 聲明局部變數的關鍵字是auto;因可以省略,幾乎沒人使用 */

  printf("%d\n",i);
  getchar();
  return 0;
}

2. 全域變數:

全域變數聲明在函數體外,一般應在函數前; 每個函數都可以使用它,不過全域變數應盡量少用.

#include <stdio.h>

void add(void);
void mul(void);

int gi = 3; /* 全域變數 */

int main(void)
{
  printf("%d\n",gi); /* 3 */

  add();
  printf("%d\n",gi); /* 5 */

  mul();
  printf("%d\n",gi); /* 10 */

  getchar();
  return 0;
}

void add(void) {
  gi += 2;
}

void mul(void) {
  gi *= 2;
}

全域變數會被初始化為空白,而局部變數在沒有賦值前是一個垃圾值:

#include <stdio.h>

int gi; /* 全域變數 */

int main(void)
{
  int i; /* 控制代碼變數 */

  printf("%d,%d\n",gi,i);

  getchar();
  return 0;
}

當全域變數與局部變數重名時,使用的是局部變數:

#include <stdio.h>

int a = 111,b = 222;

int main(void)
{
  int a = 123;
  printf("%d,%d\n",a,b); /* 123,222*/

  getchar();
  return 0;
}

相關文章

聯繫我們

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