Computer Science, asked by stutisonkar924, 1 month ago

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 anshukumary546
2

Answer:

The output of method:

4

6

Similar questions