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