What will be the output of the following program?
public class Test{

public static void main(String []args){
int i = 0;
for(i = 0; i 10; i++){
break;
}
System.out.println(i);
}
}

Posted on by