What will be the output of the following C code?
#include<stdio.h>
#include<limits.h>
main()
{
if(UCHAR_MAX<=SCHAR_MAX)
printf("hello");
else
printf("good");
}
#include<stdio.h>
#include<limits.h>
main()
{
if(UCHAR_MAX<=SCHAR_MAX)
printf("hello");
else
printf("good");
}A. error
B. hello
C. good
D. hellogood
Answer: Option C

Join The Discussion