Vidyalelo
C Programming · Q199

C Fundamentals

Programming · C Programming · question 199

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
Answer
C.
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