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
43
output is
m = a
hope this helps you
Similar questions