スポンサード リンク
Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:
コンパイルエラーメッセージ:
error C4716: '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)
{ |
スポンサード リンク