Answer :
Answer:
b, c, and e
Explanation:
The values that are used for case labels must be a constant expression.
Let's examine the options;
a. five -> declared as just int
b. FIVE -> declared as constant expression
c. 5 -> It is a constant expression
d. five++ -> incremented version of option a
e. FIVE+1 -> incremented version of option b