スポンサード リンク
Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:
コンパイルエラーメッセージ:
error C2064: 1 引数を取り込む関数には評価されません。
ソース(バグ有り):
#include "stdafx.h" int myfunc(int a); int main() { |
ソース(修正済み):
#include "stdafx.h" int myfunc(int a); int main() { |
スポンサード リンク