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
This is a GCC extension to C, mentioned in this answer to what is basically a duplicate question, and confirmed in the GCC documentation.