#include<stdio.h>main() { const int i=4; float j; j = ++i; printf("%d %f", i,++j); }Answer:Compiler error Explanation:i is a constant. you cannot change the value of constant