Q180
What will be the output of the following C code? #include static int x = 5; void main() int x = 9; x = 4; printf("%d", x);
A.
9
B.
5
C.
4
AnswerD.
0
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board