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,855 questions

51,776 answers

573 users

How to use exit status (EXIT_SUCCESS and EXIT_FAILURE) in C

1 Answer

0 votes
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <errno.h>

int main()
{
    FILE * fp;
 
    // 2 - No such file or directory 
    fp = fopen("d:\\data-----txt", "r");

    if (fp == NULL)
    {
        printf("errno: %d\n", errno);
        printf("error message: %s\n", strerror(errno));
 
        exit(EXIT_FAILURE);
        printf("last line if\n");
    }
 
    else
    {
        fclose (fp);
        exit(EXIT_SUCCESS);
        printf("last line if\n");
    }
 
    return 0;
}

/*
run:
  
errno: 2
error message: No such file or directory
 
*/

 



answered Jul 6, 2018 by avibootz

Related questions

1 answer 150 views
1 answer 72 views
72 views asked Apr 8, 2022 by avibootz
1 answer 148 views
1 answer 171 views
1 answer 123 views
123 views asked Mar 25, 2021 by avibootz
1 answer 249 views
249 views asked Oct 6, 2015 by avibootz
...