Multiple choice Find the output of the following C program: main(){int i=0;while(i++<10)printf(%d,i);} 0 to 9 1 to 10 Syntax error Infinite loop None of these Reveal answer Fill a bubble to check yourself A Correct answer Explanation while(i++<10) first compares value of i with 10, then increments i, and then prints the values of i from 0 to 9.