Latest C Aptitude Question SOLUTION: Predict the output or error(s) for the following programmes: void main() {i nt const * p=5; printf("%d",++(*p)); } Answer: Compiler error: Cannot modify a constant value. Explanati