(Choose 1 answer)
int i=0;while(i++<10) printf("%d",i);
The output of the code below will be changed if we replace while(i++<10) with while(++i<10)
A. Yes, the initial loop (while(i++<10)) will be executed 10 times and the new loop (while(++executed 9 times.
B. Yes, the initial loop (while(i++<10)) will be executed 9 times and the new loop (while(++i<executed 10 times.
C. No
Exit 33