Instrukcja zmiany nie robi tego, czego oczekuję

Co jest nie tak z tym kodem:

switch (n)
{
    case 0:   strcpy(resultString, "Zero");
    case 1:   strcpy(resultString, "One");
    case 2:   strcpy(resultString, "Two");
    case 3:   strcpy(resultString, "Three");
    case 4:   strcpy(resultString, "Four");
    case 5:   strcpy(resultString, "Five");
    case 6:   strcpy(resultString, "Six");
    case 7:   strcpy(resultString, "Seven");
    case 8:   strcpy(resultString, "Eight");
    case 9:   strcpy(resultString, "Nine");
}
printf("%s", resultString);

Zawsze drukuje „Dziewięć” bez względu na wartość n. Co ja robię źle??

questionAnswers(4)

yourAnswerToTheQuestion