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

tmpnam

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
Category:Book:C++ Programming#Code/Standard%20C%20Library/Functions/tmpnam%20
Category:Book:C++ Programming