Home > AI > Uncategorized

符号表

c语言

1)Int a = 3;

2)Int *b = 5;  //int类型指针,存的内容为地址

3)Int c[];        //int类型数组(内存块)

c[8] = 6;

符号表


符号  |  内存地址  |  类型     |  值


a        |  0x1000     |    Int     |   3

b        |  0x2000    |    Int*   |   0x1000

c        |  0x3000    |    Int[]  |   3

 

Related posts:

Leave a Reply