Just started to learn programming could u explain whats difference between them
public class tst {
public static void main(String args[]){
int mk=1200;
System.out.println(mk);
}
}
public class tst {
public static void main(String args[]){
int mk=01200;
System.out.println(mk);
}
}
First one gave result 1200
while second one 640
.