Question 13
Answer saved
Marked out of 1.00
Comment on the output of this C code?
#include <stdio.h>
void main()
{
int const k = 5;
k++;
printf("k is %d", k);
}
Oa. Error, because a constant variable can be changed only twice
b. Error, because a constant variable cannot be changed
C.Error due to const succeeding int
Od. kis 6
Clear my choice