What is the output of the following code?
int a = 1; int b = 2; int c = (a * (b + 2)) - 10-4 * ((2*2) - 6; System.out.println(c);
D
closing parentheses is missing.