You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
181 B
C

int main(int argc, char** argv)
{
switch (argc)
{
case 1:
// return the number unchanged
return 1;
case 2:
// fall through
case 3:
return 5;
default:
return 10;
}
}