スポンサード リンク
Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:
コンパイルエラーメッセージ:
warning C4305: '初期化中': 'unsigned int' から 'bool' へ切り詰めます。
ソース(バグ有り):
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
int main()
{ |
ソース(修正済み):
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
int main()
{ |
スポンサード リンク