Q. Find the output of the following code.
Code:
int ++a = 100; System.out.println(++a);
β
Correct Answer: (B)
Compile error as ++a is not valid identifier
int ++a = 100; System.out.println(++a);
You must be Logged in to update hint/solution