35. Predict the output or error(s) of the following c code Peter Vegas C - Predict the Output 1 2 3 4 5 void main() { int i=5; printf("%d",i+++++i); }void main() { int i=5; printf("%d",i+++++i); } Click here to view the answer Answer: Compiler Error Explanation: The expression i+++++i is parsed as i ++ ++ + i which is an illegal combination of operators. Peter Vegas