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);
}

相关文章

for遍历数组
。。。
声明一个计数循环
咕咕咕
#include <stdio.h> int main (void) { printf (&quo...