What is the output of the program? int i=1; for( ;i<=10;i++); System.out.print(i);
1
10
11
compile time error
What is the output of program? int i=0; for(;i<10;i++) System.out.print(i);
0
0123456789