Hi Guys when am running below program
package com.test;
public class Test1 {
public static void main(String[] args) {
// TODO Auto-generated method stub
int i=5;
for(;;i++){
if(i<0){
System.out.println("Break");
break;
}
}
}
}
Output : Break.
How it is possible ? Can any one explain
thanks in Advance.