Step by step learning
What will be in the output?
final int number = 6; int z = number++; System.out.println(z);
Compilation error.
6
7
Please log in or register to have a possibility to add comment.
Please log in or register to have a possibility to add comment.