任何人都可以解释printf如何在下面打印你好?
#include<stdio.h> void main() { char *p; p="hello"; printf("%s",*&*&p); }
我知道*&p ...表示p中的值,即字符串"hello"的地址.最初发生了什么*&
c c++ pointers addressof
addressof ×1
c ×1
c++ ×1
pointers ×1