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


Posted on by