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