What will be the output of the following:
int y=10;
System.out.println(++y);
System.out.println(y++);
Answers
Answered by
1
Answer:
30
Explanation:
Similar questions