74. Predict the output or error(s) of the following c code Peter Vegas C - Predict the Output 1 2 3 4 5 main() { int i=5,j=6,z; printf("%d",i+++j); } main() { int i=5,j=6,z; printf("%d",i+++j); } Click here to view the answer Answer: 11 Explanation: the expression i+++j is treated as (i++ + j) Peter Vegas