Computer Science, asked by khushboo6770, 1 year ago

3. void test 3(char c)
System.out.println( (int) c);
if 'm' is passed to c.

Answers

Answered by sswaraj04
4

Answer:

output:

109

Explanation

converting char to int gives ascii code of each character

https://ascii.cl/  

check it out it shows ascii of all characters

Similar questions