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.
例如:
printf("&num_ptr = %p ; num_ptr = %p ;", &num_ptr , num_ptr);
输出以下内容:
&num_ptr = 0018FF50 ; num_ptr = 0018FF48 ;
为什么是这样?
因为指针没有指向自己。