Skip to content

Instantly share code, notes, and snippets.

@dancojocaru2000
Created February 6, 2021 12:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dancojocaru2000/7604d77226796919d4bc44bd0105ee6d to your computer and use it in GitHub Desktop.
Save dancojocaru2000/7604d77226796919d4bc44bd0105ee6d to your computer and use it in GitHub Desktop.
Standard C
printf();
main(argc, argv)
int argc;
char * * argv;
{
int i;
for (i = 0; i < argc; i++)
{
printf("%s\n", argv[i]);
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment