スポンサード リンク
Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:コンパイルエラーメッセージ:fatal error C1075: 左側の 中かっこ '{' に対応するものがファイルの最後まで検出されませんでした。ソース(バグ有り):
#include <stdio.h> int main() { int a=0; if (a==0) { printf("a==0\n"); return 0; }
ソース(修正済み):
#include <stdio.h> int main() { int a=0; if (a==0) { printf("a==0\n"); } return 0; }
[コンパイルエラーコード、メッセージに戻る]