⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 var.c

📁 里面包含很多c语言的源码
💻 C
字号:
/* Demonstrates local variables. */

#include <stdio.h>

int x = 1, y = 2;

void demo(void);

int main( void )
{
  printf("\nBefore calling demo(), x = %d and y = %d.", x, y);
  demo();
  printf("\nAfter calling demo(), x = %d and y = %d\n.", x, y);

  return 0;
}

void demo(void)
{
    /* Declare and initialize two local variables. */

    int x = 88, y = 99;

    /* Display their values. */

    printf("\nWithin demo(), x = %d and y = %d.", x, y);
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -