编程学习网为您整理以下代码实例,主要实现:C语言库setvbuf()函数,希望可以帮到各位朋友。
#include <stdio.h>
#include <string.h>
#include <unistd.h>
int main () {
char buff[1024];
memset( buff, '\0', sizeof( buff ));
fprintf(stdout, "Going to set full buffering on\n");
setvbuf(stdout, buff, _IOFBF, 1024);
fprintf(stdout, "This is yiibai.com\n");
fprintf(stdout, "This output will go into buff\n");
fflush( stdout );
fprintf(stdout, "and this will appear when programm\n");
fprintf(stdout, "will come after sleePing 5 seconds\n");
sleep(5);
return(0);
}
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!