易百教程

初始化变量

在前面的示例中,使用如下语句声明每个变量:

int cats;    //  声明宠物猫的数量

可以使用以下语句设置变量cats的值:

cats = 2;

这会将cats的值设置为2。第一个语句创建名为cats的变量,但它的值将是内存中的任何值。之后的赋值语句将值设置为2

可以在声明变量时就初始化变量。

int cats = 2;

此语句将cats声明为int类型,并将其初始值设置为2

示例代码

// 简单的计算
#include <stdio.h>

int main(void)
{
      int total;
      int cats = 2;
      int dogs = 1;
      int bugs = 2;
      int others = 5;
      // 计算宠物总数
      total = cats + dogs + bugs + others;

      printf("We have %d pets in total\n", total); // 输出结果
      return 0;
}

执行上面示例代码,得到以下结果:

We have 10 pets in total