1. 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 const * p=5; printf("%d",++(*p)); }void main() { int const * p=5; printf("%d",++(*p)); } Click here to view the answer Compiler error: Cannot modify a constant value. Explanation: p is a pointer to a “constant integer”. But we tried to change the value of the “constant integer”. Peter Vegas