Why you might sometimes need to add -Wunreachable-code for C code
Often when you have unreachable code it means that you've not codedwhat you thought you had, e.g. curly braces are in the wrong place.By default, compilers such as gcc and clang (llvm) will compile...