0
What's the output? I didn't get this.
int i=2; System.out.print(++i); System.out.print(++i); //Tell me the output //Please
2 Respuestas
+ 14
int i=2;
System.out.print(++i); // outputs 3
System.out.print(++i); // outputs 4
https://www.sololearn.com/Discuss/164544/?ref=app
+ 1
Ok