What is the numerical range of a chat in Java
Answers
Answered by
0
Explanation:
The char type is integral but unsigned. The range of a variable of type char is from 0 to 2^(16)-1 or 0 to 65535. Answer: In java, the range of a char type is 0 to 65535 or 0 to +((2^16)-1) Getting java to print out the MIN_VALUE and max value is tricky because the characters at position 0 and 65535 are unprintable.
Similar questions