スポンサード リンク
Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:
コンパイルエラーメッセージ:
fatal error C1021: プリプロセッサ コマンド 'cout' が無効です。
ソース(バグ有り):
#include <iostream> #include <string> using namespace std; |
ソース(修正済み):
#include <iostream> #include <string> using namespace std; |
スポンサード リンク