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
AnswerC.
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