Vidyalelo
C Programming · Q51

Function

Programming · C Programming · question 51

Q51

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

A.
Run time error
B.
3 3
C.
3 5
D.
3 4
Answer

Answer: Option D

Solution

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