- Home
- Output Questions for Class 10 ICSE Computer Applications
Write the output of the following program code: char ch ;
Output Questions for Class 10 ICSE Computer Applications
Write the output of the following program code:
char ch ;
int x=97;
do
{
ch=(char)x;
System.out.print(ch + " " );
if(x%10 == 0)
break;
++x;
} while(x<=100);