Vidyalelo
C Programming · Q283

C Fundamentals

Programming · C Programming · question 283

Q283

What will be the output of the following C code? #include int main() int x = -2; if (!0 == 1) printf("yes "); else printf("no ");

A.
yes
Answer
B.
no
C.
run time error
D.
undefined

Answer: Option A

Solution

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