Predict the output of following code:
public class Sookshmas 
{
public static void main (String args[ ])
{
char ch;
int x=97;
do
{
ch=(char)x;
System.out.println(ch+" ");
if(x%10==0)
break;
++x;
}
while (x=100);
}
}


Posted on by