manoj Manoj
8 years ago

int demo(int );
void main()
{
int i=demo(10);
printf("%d",--i);
}
int demo(int i)
{
return i;
}

A. 10

B. 9

C. 11

D. none of the above

Answer: Option B


This Question Belongs to User Ask Question >> Miscellaneous

Join The Discussion

Related User Ask Questions