C++のソースコードで using namespace std; を記述すると、何ができるようになりますか?
using namespace std;
C++ の識別子で大文字と小文字が区別されなくなる。
すべての include ディレクティブを削除できる。
cout や endl などの標準ライブラリの名前を、std:: 接頭辞なしで使用できる。
cout
endl
std::
main 関数の名前が std に変更される。