std::tmpfile

From cppreference.com
< cpp | io | c
Defined in header <cstdio>
FILE *tmpfile();

Opens a temporary file. The file is opened as binary file for update ("wb+ mode). The filename of the file is guaranteed to be unique within the filesystem.

The file will be closed when the program exits.

Contents

[edit] Parameters

(none)

[edit] Return value

The associated file stream or NULL if an error has occurred

[edit] Example

[edit] See also

returns a unique filename
(function)