Question: Can someone please explain whats going on in this function i depth? I'm especiaslly confused with why the output is 0 0 0 0 #include
Can someone please explain whats going on in this function i depth? I'm especiaslly confused with why the output is 0 0 0 0
#include
int main()
{
static int i=5;
if(--i){
main();
printf("%d ",i);
}
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
