What is the output of this C code?
int main() { int i = 2; int j = ++i + i; printf("%d\n", j); }
Answer: A
No answer description available for this question.