What is the output of this C code?
int main() { int x = 2, y = 1; x *= x + y; printf("%d\n", x); return 0; }
Answer: D
No answer description available for this question.