What will be the output of the following program.

Loading

โœช Choose the correct option.

What will be the output of the following program.


#include
int main()
{
static int i=5;
if(--i){
main();
printf("%d ",i);
}
return 0;
}

A. 5 4 3 2 1
B. 0 0 0 0
C. 5 4 3 2
D. Garbage Value