c언어
-
C언어 switch case문에서 범위 조건 사용.프로그래밍/C 2021. 3. 24. 10:53
총 3가지의 방법이 있다. *모든 예시는 0~5와, 6~10을 구분하는 예시이다. 1. gcc extension의 ... 사용. C언어 standard문법은 아니지만, gcc extention에서는 가능하다. Case Ranges - Using the GNU Compiler Collection (GCC) Case Ranges - Using the GNU Compiler Collection (GCC) You can specify a range of consecutive values in a single case label, like this: This has the same effect as the proper number of individual case labels, one for each intege..