L_tmpnam - C stdio.h

C examples for stdio.h:L_tmpnam

Type

constant

From


<cstdio>
<stdio.h>

Description

Minimum length for temporary file name

Demo Code


#include <stdio.h>

int main()/*w  w  w.  jav a 2s .c  o  m*/
{

  printf ("%u ",L_tmpnam );
  return 0;
}

Related Tutorials