C-02 Variables

本文最后更新于:2 年前

变量

声明变量

type_name variable_name;

C 语言的基础类型包括

1
2
3
4
5
6
7
short s;
int a;
long l;
double d;
float f;

mytype t; // 自定义type变量

声明变量并初始化

type_name variable_name = initial_value;

1
2
3
4
5
short s = 22;
int a = 10000;
long l = 1000000;
double d = 0.0007;
float f = 0.0;

C-02 Variables
https://trickyrat.github.io/2020/09/30/C-02 Variables/
作者
trickyrat
发布于
2020年9月30日
许可协议