3. void test 3(char c)
System.out.println( (int) c);
if 'm' is passed to c.
Answers
Answered by
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