C库函数 setbuf() C库函数 rewind() C库函数 setvbuf() C库函数 setbuf() #include <stdio.h> int main () { char buf[BUFSIZ]; setbuf(stdout, buf); puts("This is codingdict"); fflush(stdout); return(0); } C库函数 rewind() C库函数 setvbuf()