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 ;
どうしてこれなの?
ポインタがそれ自体を指していないためです。