Computer Science, asked by shreyasrivastava19, 9 months ago

int m = ‘A’, n = 'b';
m++;
--n;
System.out.println(“m=" + m);
System.out.println("n=" + n):​

Answers

Answered by lydiajoe
0

Explanation:

A

b

will be printed as a result

Similar questions