2.If x=10 what will be the output?
System.out.println(++x);
System.out.print(x++);
System.out.print(x++);
System.out.println(++x);
System.out.println(x++);
Answers
Answered by
0
Answer:
11
111214
14
Explanation:
Similar questions