I was browsing some code in the linux kernel and I came across the statements like case \'0\' ... \'9\':
case \'0\' ... \'9\':
To try this out I created the test program belo
That is the case range extension of the GNU C compiler, it is not standard C or C++.