スポンサード リンク
Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:コンパイルエラーメッセージ:error C2001: 定数が 2 行目に続いています。ソース(バグ有り):
#include "stdafx.h" int main() { printf ("test); }
ソース(修正済み):
#include "stdafx.h" int main() { printf ("test"); }
[コンパイルエラーコード、メッセージに戻る]