Computer Science, asked by nupur35, 11 months ago

What is the output of the following program snippet
char x= 'A'; int m;
m=(x= = 'a')? 'A': 'a';
System.out.println("m="+m);​

Answers

Answered by pallavi89
43

output is

m = a

hope this helps you

Similar questions