fork(13) download
#include <stdio.h>
const int FOO = 10;

int main(int argc, char** argv)
{
    switch(argc)
    {
        case FOO: { printf("foo\n"); }
        default:  { printf("default\n"); }
    }
}
Success #stdin #stdout 0.02s 2724KB
stdin
Standard input is empty
stdout
default