What is the output of this C code?
int main() { int i = 0; int j = i++ + i; printf("%d\n", j); }
Answer: