Q50
What will be the output of the following C code? #include double var = 8; int main() int var = 5; printf("%d", var);
A.
5
AnswerB.
8
C.
Compile time error due to wrong format identifier for double
D.
Compile time error due to redeclaration of variable with same name
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board