Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,885 questions

51,811 answers

573 users

How to use tmpnam() function to generate temporary filename in C

2 Answers

0 votes
#include <stdio.h>
    
int main(void)
{
    char buf[64];
 
    tmpnam(buf);
    printf("Temp filename 1: %s\n", buf);
 
    char *p = tmpnam(NULL);
    printf("Temp filename 2: %s\n", p);
 
    return 0;
}
   
   
   
   
/*
run:
   
Temp filename 1: /tmp/filehXJV3r
Temp filename 2: /tmp/filedgRYVU
 
*/

 



answered May 7, 2016 by avibootz
edited Apr 22, 2022 by avibootz
0 votes
#include <stdio.h>

int main(void) {
    char *name = NULL;

    if ((name = tmpnam(NULL)) != NULL) {
        printf("%s", name);
    } else {
        printf("Cannot create a unique filename\n");
    }
}




/*
run:

/tmp/fileO87mPs

*/

 



answered Apr 22, 2022 by avibootz
...