スポンサード リンク
Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:
コンパイルエラーメッセージ:
error C2144: 構文エラー : 'int' は ';' によって先行されなければなりません。
ソース(バグ有り):
#include "stdafx.h" int myfunc(int a) int main() { |
ソース(修正済み):
#include "stdafx.h" int myfunc(int a); int main() { |
スポンサード リンク