"" に関する原因と対処

このコンパイルエラーの原因と対処に関して説明します。

スポンサード リンク

Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:

コンパイルエラーメッセージ:
warning C4800: 'int': ブール値を 'true' または 'false' に強制的に設定します (警告の処理)

ソース(バグ有り):

#include <stdio.h>
#include <conio.h>
#include <ctype.h>

int main()
{
int ch;
printf( "Y キーを押すと終了します。" );
do
!
ch = toupper( _getche());
} while( ch != 'Y' );
}


原因:


対処:


ソース(修正済み):

#include <stdio.h>
#include <conio.h>
#include <ctype.h>

int main()
{
int ch;
printf( "Y キーを押すと終了します。" );
do
{
ch = toupper( _getche());
} while( ch != 'Y' );
}

スポンサード リンク



[コンパイルエラーコード、メッセージに戻る]