What is the range of short data type?

class DataType4
{
public static void main(String[] args)
{
short s=32768;
System.out.println(s);
}
}
/*
Output:- CE[possible loss of precision]
Explanation:- "short" data type value has a range between -32768 to 32767
*/

0 comments: