Q. What is the output of the below Java code snippet?
Code:
int a = 2 - - 7; System.out.println(a);
β
Correct Answer: (C)
9
int a = 2 - - 7; System.out.println(a);
You must be Logged in to update hint/solution