C Programming - Functions - Discussion

Discussion Forum : Functions - Find Output of Program (Q.No. 21)
21.
What will be the output of the program?
#include<stdio.h>
#include<stdlib.h>

int main()
{
    int i=0;
    i++;
    if(i<=5)
    {
        printf("IndiaBIX");
        exit(1);
        main();
    }
    return 0;
}
Prints "IndiaBIX" 5 times
Function main() doesn't calls itself
Infinite loop
Prints "IndiaBIx"
Answer: Option
Explanation:

Step 1: int i=0; The variable i is declared as in integer type and initialized to '0'(zero).

Step 2: i++; Here variable i is increemented by 1. Hence i becomes '1'(one).

Step 3: if(i<=5) becomes if(1 <=5). Hence the if condition is satisfied and it enter into if block statements.

Step 4: printf("IndiaBIX"); It prints "IndiaBIX".

Step 5: exit(1); This exit statement terminates the program execution.

Hence the output is "IndiaBIx".

Discussion:
12 comments Page 2 of 2.

Somya said:   9 years ago
Can anybody Explain "exit"?

Saguuuu said:   5 years ago
exit (0) means a Program terminates normally successfully.
exit (1) means a program terminates normally unsuccessfully.


Post your comments here:

Your comments will be displayed after verification.