- Home
- Output Questions for Class 10 ICSE Computer Applications
What will be the output of the following code? int m=2; int
Output Questions for Class 10 ICSE Computer Applications
What will be the output of the following code?
int m=2;
int n=15;
for(int i=1;i<5;i++)
m++;
--n;
System.out.println("m="+m);
System.out.println("n="+n);