Q. What will be the output of the following C code?
Code:
#include <stdio.h>
int main()
{
unsigned int n = 25;
signed char ch = -25;
if (n > ch)
{
printf("Yes\n");
}
else if (n < ch)
{
printf("No\n");
}
}
β
Correct Answer: (B)
No