What will be the output of the following C code?
#include
int main()
{
int x = -2;
if (!0 == 1)
printf("yes\n");
else
printf("no\n");
}
Answer: A
No answer description available for this question.