Question:What will be output if you will compile and execute the following c code?#include<stdio.h>int main(){ const int i=5; i++; printf("%d",i); return 0;}
A 5 B 6 C 0 D Compiler error E None
+ AnswerD
+ Report