What is wrong with this code:
switch (n) { case 0: strcpy(resultString, \"Zero\"); case 1: strcpy(resultString, \"One\"); case 2: strcpy(re
You need to break after each case.
case 0: do soemthing; break; case 1: do something; break;
In many managed languages, it won't let "one case fall through to another," and throws an error. But C loves to let you do whatever you want!