short tell[10]; tell displays &tell[0] &tell displays address of whole array 地址数字相同,但是含义不一样。 &tell[0], is the address of a 2-byte block of memory &tell is the address of a 20-byte block of memory
So
tell + 1 adds 2 to the address value &tell + 1 adds 20 to the address value
......估计还会忘...
RDF
2017-12-26 11:31:00 +08:00
上文是:字符串首字符的地址,读地址,并显示字符,那(int * )强制转换出的,就是 H 字符所在实际内存地址,