When i assign 0112 into 'int' and simply print value of int, its print 74 value of int. Why it is print value 74 of 0112 ?
public static void main(String[] args) {
int i = 0112;
System.out.println(i);
}
Output :-
74
Please any one can suggests me.