1.

What will be the output of the following C code?
#include <stdio.h>
void main()
{
int const m = 10;
m++;
printf("m is %d", m);
}

A. 10
B. 11
C. Compilation Error
D. Runtime Error
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs