変数とは、データを格納する、名前お持った場所である。
C言語では、以下のようにして実感することができる。

main()
{
static int b =4545;
{
int a;
a = 072;
printf("a=%d aの場所=%x\n", a, a);
}

}