C++ Programming/Code/Standard C Library/Functions/tmpfile

tmpfile

Syntax
#include <cstdio>
FILE *tmpfile( void );

The function tmpfile() opens a temporary file with a unique filename and returns a pointer to that file. If there is an error, null is returned.

Related topics
tmpnam
Category:Book:C++ Programming#Code/Standard%20C%20Library/Functions/tmpfile%20
Category:Book:C++ Programming