Notice the missing braces enclosing the cases of the switch statement: ``` C int main(int argc, char * argv[]) { switch(x) case 0: break; return 0; } ```