What is the output of the following code?


public class A{
public static void main(string[ ]args){
int a=100;
system.out.println(--a);
a+=10;
system.out.println(a);
}
}


Posted on by