int main ()
{
int i;
i=call();
printf("%d",i);
return 0;
}
int call ()
{
int k;
k=10;
return 0;
return k;
}
What is the output for the above program?

Posted on by