Question: 16
(Choose 1 answer)
What will be the output of the following C code?
#include <stdio.h>
void main()
{
int k = 4;
int const p = k;
int r = 3;
printf("%d", p);
A. The value of p is 4.
B. Run time error
C. Compile time error
D. The value of p is a garbage value