- Home
- Output Questions for Class 10 ICSE Computer Applications
What will be the output of the following code? int k=5,j=9;
Output Questions for Class 10 ICSE Computer Applications
What will be the output of the following code?
int k=5,j=9;
k+= k++ - ++j + k;
System.out.println("k="+k);
System.out.println("j="+j);