スポンサード リンク
Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:コンパイルエラーメッセージ:error C3861: '<関数名>': 識別子が見つかりませんでしたソース(バグ有り):
#include "stdafx.h" int main() { int a=myfunc(0); printf("%d",a); return 0; } int myfunc(int a) { return a+1; }
ソース(修正済み):
#include "stdafx.h" int myfunc(int a); int main() { int a=myfunc(0); printf("%d",a); return 0; } int myfunc(int a) { return a+1; }
[コンパイルエラーコード、メッセージに戻る]