C库函数 tmpfile() C库函数 setvbuf() C库函数 tmpnam() C库函数 tmpfile() #include <stdio.h> int main () { FILE *fp; fp = tmpfile(); printf("Temporary file created\n"); /* you can use tmp file here */ fclose(fp); return(0); } C库函数 setvbuf() C库函数 tmpnam()