Interview Question 3561
Created by admin on Sat, 17/11/2012 - 12:34
Explanation:
Side effects are involved in the evaluation of i.
Question:
void main()
{
int i=5;
printf("%d",i++ + ++i);
}
Language:
Answer:
Output Cannot be predicted exactly.