Can switch statements use strings C?

Can we use a switch statement to switch on strings in C? – Quora. Directly, no . The index in a switch statement must be an integer, which includes an integer expression. So, while one cannot switch on a string value, one can switch on a string function , e.g. strcmp, which produces an integer result.

Read more