Q. What is the output of this C code?
Code:#include <stdio.h>
main()
{
if (sizeof(int) > -1)
printf("True");
else
printf("False");
}
β
Correct Answer: (B)
False
#include <stdio.h>
main()
{
if (sizeof(int) > -1)
printf("True");
else
printf("False");
}
You must be Logged in to update hint/solution