I am trying to print this integer number
int a=07;
System.out.println("Value of a is "+a);
it runs and shows value of a is 7
but when i change the value of a
int a=08;
System.out.println("Value of a is "+a);
then it shows integer number too large
I dont know why... Can any body tell me ?