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 

+ Answer
+ Report
Total Preview: 1074

Copyright © 2024. Powered by Intellect Software Ltd