int f(int j)
{
static int i =50;
int k;
if(i==j)
{
printed("Something");
k=f(i);
return 0;
}
else return 0;
}
Which one of the following is TRUE?

Posted on by