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