Hi,
public class TestClass7
{
public static void main(
String[] args) throws Exception
{
System.out.println(Integer.MIN_VALUE);
int a = Integer.MIN_VALUE;
int b = -a;
System.out.println( a+ " "+b);
}
}
The output is -2147483648 -2147483648.Please explain why the output is not
-2147483648 2147483648.