Skip to content

Instantly share code, notes, and snippets.

@kmicinski
Created December 4, 2019 03:09
Show Gist options
  • Save kmicinski/30ccdf9bac51c1a8ccd989d6fee21c8b to your computer and use it in GitHub Desktop.
Save kmicinski/30ccdf9bac51c1a8ccd989d6fee21c8b to your computer and use it in GitHub Desktop.
int foo() { return 1; }
int bar() { return 2; }
int main(int argc, char **argv)
{
if (argc > 2) { foo(); }
if (argc < 3) { bar(); }
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment