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.
次のように宣言された配列があるとします。
int *p = new int[size];
もちろん、p最初の要素のアドレスを指します。しかし、バイトはメモリのアドレス指定可能な最小単位であるpため、実際には配列の最初の要素の最初の 4 バイトの最初のバイトを指していますか?
p