Interview Question 3562

Created by admin on Sat, 17/11/2012 - 12:34
Explanation: 
The expression i+++++i is parsed as i ++ ++ + i which is an illegal combination of operators..
Question: 

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

Language: 
Answer: 

Compiler Error