トップページ > キーワード検索 > BUFSIZ
C言語規格
C言語(その他)
プログラム
その他
BUFSIZ
機能 setbuf関数によって用いられるバッファの大きさを表す。
定義 #include <stdio.h>

BUFSIZ
実装例
#include <stdio.h>

int main(void)
{
    char buf[ BUFSIZ ];
    
    setbuf(stdout, buf);
    
    return 0;
}
実行結果
(画面出力なし)





inserted by FC2 system