Vidyalelo
C Programming · Q186

C Fundamentals

Programming · C Programming · question 186

Q186

What will be the output of the following C code? #include int main() int i = 23; char c = -23; if (i < c) printf("Yes "); else printf("No ");

A.
Yes
B.
No
Answer
C.
Depends on the compiler
D.
Depends on the standard

Answer: Option B

Solution

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