Guess the output.

public class Test
{
public static void main(String[] args)
{
int k=10;
int d=k++;
int d1= ++10 + d;
System.out.println(d1);
}
}

Posted on by