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); }
Answer: A
No answer description available for this question.