Skip to content

Instantly share code, notes, and snippets.

@jonman364
Created November 4, 2014 15:10
Show Gist options
  • Select an option

  • Save jonman364/edec855028a1de55cd37 to your computer and use it in GitHub Desktop.

Select an option

Save jonman364/edec855028a1de55cd37 to your computer and use it in GitHub Desktop.
#include <cstdlib>
int main(int argc, char **argv){
int retval = 0;
if(argc > 1)
retval = atoi(argv[1]);
return retval;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment