lang-bootstrap/05/main.c

11 lines
124 B
C
Raw Normal View History

#include <stdio.h>
#include <string.h>
2022-02-13 12:51:21 -05:00
2022-02-14 16:52:33 -05:00
int main(void) {
char nam[L_tmpnam];
printf("%s\n", tmpnam(nam));
return 0;
2022-02-09 22:44:27 -05:00
}
2022-02-12 21:27:57 -05:00