Vidyalelo
C Programming · Q201

Function

Programming · C Programming · question 201

Q201

What will be the output of the following C code? #include static int x = 5; void main() x = 9; int x = 4; printf("%d", x);

A.
9
Answer
B.
4
C.
5
D.
0

Answer: Option A

Solution

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