スポンサード リンク
Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:
コンパイルエラーメッセージ:
warning C4353: 非標準の拡張機能が使用: 関数式として定数 0 が使用されています。本来の '__noop' 関数を使用してください
ソース(バグ有り):
#include <stdio.h> #include <conio.h> int main() { char buf[256]; size_t read; printf("文字を入力してください。\n"); _cgets_s(buf, sizeof(buf), &read); printf("入力されたバイト数: %d バイト\n", read); return 0{ } |
ソース(修正済み):
#include <stdio.h> #include <conio.h> int main() { char buf[256]; size_t read; printf("文字を入力してください。\n"); _cgets_s(buf, sizeof(buf), &read); printf("入力されたバイト数: %d バイト\n", read); return 0; } |
スポンサード リンク