What do you think about the following C Code ? What will be the output.
#include <stdio.h>
int main (void)
{
static int a = 3;
if (a == 0)
{
return 0;
}
printf ("going down\n");
a--;
main ();
printf ("coming up\n");
return 0;
}
