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

tmpnam edit

Syntax
#include <cstdio>
char *tmpnam( char *name );

The tmpnam() function creates a unique filename and stores it in name. tmpnam() can be called up to TMP_MAX times.

Related topics
tmpfile