Answers for "java int max_value"

0

max_value in java

(stores the maximum possible value for any integer variable)
    public static void main(String[] arg)
    {
  		System.out.println("Integer.MAX_VALUE = "
                           + Integer.MAX_VALUE);///output :-2147483647
    }
}
Any integer variable cannot store any value beyond this limit
Posted by: Guest on June-04-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language