String in Switch Statement Example 1
Read moreCan switch case be used for strings in C?
No you can’t . The case labels of a switch need to be compile time evaluable constant expressions with an integral type. But int literals like ‘+’ satisfy that requirement.28 Ara 2017
Read more