Assuming all variables are declared and initialized properly, will this compile?
for(i = 1, j = 2, i < 3; i++, j++){}

A. Compilation error
B. Infinite loop
C. Runs successfully
D. Syntax error in the loop condition