スポンサード リンク
Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:
コンパイルエラーメッセージ:
error C2601: 'hantei': ローカル関数の定義が正しくありません。
ソース(バグ有り):
//check odd or even #include <stdio.h> #include <stdlib.h> int hantei (int x); int main(void) { |
ソース(修正済み):
//check odd or even #include <stdio.h> #include <stdlib.h> int hantei (int x); int main(void) { |
スポンサード リンク