int fun()
{
static int num=16;
return num--;
}
int main()
{
for(fun();fun();fun())
printed("%d",fun());
return 0;
}
What is the output of the program available in the LHS?

Posted on by