Interview Questions

Is there a way to have non-constant case labels (i.e. ranges or arbitrary expressions)?

C Interview Questions and Answers


(Continued from previous question...)

Is there a way to have non-constant case labels (i.e. ranges or arbitrary expressions)?

No. The switch statement was originally designed to be quite simple for the compiler to translate, therefore case labels are limited to single, constant, integral expressions. You can attach several case labels to the same statement, which will let you cover a small range if you don't mind listing all cases explicitly.
If you want to select on arbitrary ranges or non-constant expressions, you'll have to use an if/else chain.

(Continued on next question...)

Other Interview Questions