Top

Discussion

What is the output of this C code?  

int main()
    {
        int x = -2;
        if (!0 == 1)
            printf("yes\n");
        else
            printf("no\n");
    }

 

  • A.Yes
  • B.No
  • C.Run time error
  • D.Undefined

Answer: A

No answer description available for this question.

No comment is present. Be the first to comment.
Loading…

Post your comment