void main(){ int i = abc(10); printf("%d", --i);}int abc(int i){ return(i++);}
void main()
{
int i = abc(10);
printf("%d", --i);
}
int abc(int i)
return(i++);
10
9
11
None of These
View Answer
Workspace
Share
Copy Text
Copy URL
Answer : Option B
Explanation :
"return(i++)", it will first return i and then increment it. i.e. 10 will be returned.
Be The First To Comment