スポンサード リンク
Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:
コンパイルエラーメッセージ:
error C2039: 'cout': 'std' のメンバーではありません。C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\fstream(13): note: 'std' の宣言を確認してください
ソース(バグ有り):
#include <fstream> int main() { |
ソース(修正済み):
#include <iostream> #include <fstream> int main() { |
スポンサード リンク