Multiple choice Find the output of the following C program: main(){int i=2;printf(%d %d,++i,++i);} 3 4 4 3 4 4 Output may vary from compiler to compiler None of these Reveal answer Fill a bubble to check yourself A Correct answer Explanation Value of i = 2, ++i = 3 and ++i = 4.