7 lines
106 B
C
7 lines
106 B
C
int main() {
|
|
int x = 0;
|
|
switch(1) {
|
|
case 1: x = 1; break;
|
|
default: return;
|
|
}
|
|
} |