What will be the output of the following program
// filename Test.java

class Test {

public static void main(String[] args) {

for(int i = 0; 1; i++) {

System.out.println("Hello");

break;

}

}
}

Posted on by