Vidyalelo
C Programming · Q180

Function

Programming · C Programming · question 180

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
Answer
D.
0

Answer: Option C

Solution

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