What is the output of the following code??
public class While 
{
public void loop()
{
int x= 0;
while ( 1 )
{
System.out.print("x plus one is " + (x + 1));
}
}
}


Posted on by