Can anybody explain the code
Posted
by girinie
on Stack Overflow
See other posts from Stack Overflow
or by girinie
Published on 2010-03-12T00:23:11Z
Indexed on
2010/03/12
0:37 UTC
Read the original article
Hit count: 194
java
class giri{
public static void main(String args[])
{
int x = 17;
int y = 013;
System.out.println("x+y = " + x+y);
}
}
When I run the program I get the output 1711. Can anybody tell me How do I get 1711
© Stack Overflow or respective owner