tmpnam()

This is a file I/O function, also hardware dependent. It is not implemented in this Compiler.

Syntax
  #include <stdio.h>

  
  char *tmpnam(char *s);

  
Description

tmpnam() creates a new unique filename. If s is not NULL, tmpnam() assigns the new name to s.

Return

A unique filename

See also

tmpfile()