Vidyalelo
C Programming · Q208

Function

Programming · C Programming · question 208

Q208

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

A.
4
Answer
B.
3
C.
0
D.
Undefined

Answer: Option A

Solution

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