Vidyalelo
C Programming · Q92

C Fundamentals

Programming · C Programming · question 92

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
Answer
D.
Runtime error

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board