スポンサード リンク
Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:コンパイルエラーメッセージ:error C2065: 'cout' : 定義されていない識別子です。ソース(バグ有り):
void main() { int x = 100; cout << "xの値は:" << x << endl; }
ソース(修正済み):
#include <iostream> using namespace std; void main() { int x = 100; cout << "xの値は:" << x << endl; }
[コンパイルエラーコード、メッセージに戻る]