C - Pointers - Discussion

You Are Here :: Home > C > Pointers - Discussion

 



Q.

void main()
{
int i=5;
printf("%d",i++ + ++i);
}

A. Compile time error B. 5
C. 10 D. Output Cannot be predicted exactly

Answer: Option D
Explaination:

Side effects are involved in the evaluation of i



Discussion

Your Comments Goes here...
NameDiscussion