home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Super PC 34
/
Super PC 34 (Shareware).iso
/
spc
/
UTIL
/
DJGPP2
/
V2
/
DJTST200.ZIP
/
tests
/
libc
/
ansi
/
stdio
/
tmpnam.c
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-04-29
|
210 b
|
16 lines
#include <stdio.h>
int
main(void)
{
int i;
char buf[1000];
for (i=0; i<1030; i++)
{
char *s = tmpnam(buf);
if (i<30 || i > 970)
printf("%d: %s\n", i, s);
}
return 0;
}