What is the output of the following code?
#includestdio.h
int main()
{
static int num =3;
if(--num)
{
main();
printf("%d", num );
}
return 0;
}


Posted on by