tmpfile是一種函式,功能是以wb+形式創建一個臨時二進制檔案。
基本介紹
- 中文名:tmpfile
- 詞解釋:C語言函式名
- 功 能:以wb+形式創建一個臨時二
- 函式原型:FILE *tmpfile(void);
名詞解釋
基本信息
功 能
函式原型
簡介
程式例
#include<stdio.h>#include<stdlib.h>intmain(void){FILE*tempfp;tempfp=tmpfile();if(tempfp)printf("Temporaryfilecreated\n");else{printf("Unabletocreatetemporaryfile\n");exit(1);}return0;}