tmpnam()

This is a File I/O function. It is not implemented in the Compiler.

Syntax
  #include <stdio.h>

  
  char *tmpnam(char *s);

  
Description

tmpnam() creates a new unique filename. If s is not NULL, this name is assigned to it.

Return

A unique filename.

Seealso

tmpfile()