Q92
What will be the output of the following C code? #include #define a 10 int main() const int a = 5; printf("a = %d ", a);
A.
a = 5
B.
a = 10
C.
Compilation error
AnswerD.
Runtime error
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board