Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
char p[10]="Hello world"; printf("%u %u",&p,p);
输出:
4294959568 4294959568
为什么两者都给出相同的值?&p应该给出它存储数组地址的地址吗?
&p
定义数组时会发生什么?将有什么值p并且访问数组?
p