Top

Discussion

What is the output of this C code?    

int main()
    {
        int a = 20, b = 15, c = 5;
        int d;
        d = a == (b + c);
        printf("%d", d);
    }

 

  • A.1
  • B.40
  • C.10
  • D.5

Answer: A

No answer description available for this question.

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

Post your comment