#includestdio.h
void f()
{
static int i = 3;
printf("%d ", i);
if(--i)
f();
}
main()
{
f();
}

What is the output of this code snippet?

Posted on by