Vidyalelo
C Programming · Q193

C Fundamentals

Programming · C Programming · question 193

Q193

What will be the output of the following C code? #include void main() int x = 0; if (x = 0) printf("Its zero "); else printf("Its not zero ");

A.
Its not zero
Answer
B.
Its zero
C.
Run time error
D.
None

Answer: Option A

Solution

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