Latest C Aptitude Question SOLUTION: Q. Predict the output or error main() { int i=5,j=6,z; printf("%d",i+++j); } A. 11 Explanation:the expression i+++j is treated as (i++ + j)