I have declared a variable int i = 08;
I got an error in netbeans that "integer number too large"
! Can anyone explain why this happens. I am coding in Java.
for (int i = 08; l <= Integer.parseInt(dd); i++)
To remove the error I then tried int i = 8
which works; Now I do not understand that why int i = 08
do not work?