write the following using for loop:
while (true)
System.out.print("*") ;
Answers
Answered by
0
This Loop seems to be infinite
you can try this
for(i=1;i>0;i++)
{
System.out.print("*");
}
Similar questions