Kizspy | Question: 27
(Choose 1 answer)
PULVERF.JW.com
What is the output when the sample code below is executed?
#include<stdio.h>
int main()
{
const int a=5;
if(a>3)
else
a++;
break;
a--;
printf("%d",a);
return 0;
A. Compile time error
B. 6
C. 4
D. 5