C语言学习02:变量的类型

张建 lol

变量

  1. 什么是变量?

变量表示 内存中的一个存储区域(不同的数据类型,占用的空间大小不一样)

  1. 为什么需要变量?

答:变量是其程序的 基本组成单位

定义变量

type variable_list;

  • type:变量类型
  • variable_list:一个或多个标识符组成,多个用逗号分割
1
int i, j, k;

变量的声明

变量的声明有两种:

  • 一种是需要建立存储空间。

int i; // 声明,也是定义

  • 另一种是不需要建立存储空间的,用 extern关键字 声明的。

extern int i; // 声明,不是定义

  • Post title:C语言学习02:变量的类型
  • Post author:张建
  • Create time:2023-02-13 00:52:46
  • Post link:https://redefine.ohevan.com/2023/02/13/C学习/C语言学习02:变量 2/
  • Copyright Notice:All articles in this blog are licensed under BY-NC-SA unless stating additionally.
On this page
C语言学习02:变量的类型