Give the output of following public static void main(String args[]) { int a = 5; a++; System.out.println(a); a- = (a--) – (--a); System.out.println(a); }
Answers
Answered by
2
Answer:
The output of method:
4
6
Similar questions