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 x[10]; cout<<x<<endl; cout<<&x<<endl; //both couts are same. int x; cout<<x<<endl; cout<<&x<<endl; //last two couts are different.
この理由は何でしょうか?