Skip to content

Instantly share code, notes, and snippets.

@pramoth
Created September 21, 2022 16:36
Show Gist options
  • Save pramoth/5865585da39c8e41f780b3e5f07ccea7 to your computer and use it in GitHub Desktop.
Save pramoth/5865585da39c8e41f780b3e5f07ccea7 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(int argc, char **argv) {
for (int i = 1; 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