All pastes #2126185 Raw Edit

Stuff

public text v1 · immutable
#2126185 ·published 2012-03-08 17:10 UTC
rendered paste body
#include <stdio.h>

int main(void) {

    int x = 4;

    switch (x) {
        default:printf("default\n");
                break;
        case 4: printf("case 4\n");
                break;
    }
}