Q199
What will be the output of the following C code? #include int main() unsigned int i = 23; signed char c = -23; if (i > c) printf("Yes "); else if (i < c) printf("No ");
A.
Yes
B.
No
AnswerC.
Depends on the compiler
D.
Depends on the operating system
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board