Skip to content

Instantly share code, notes, and snippets.

@jotaki
Created April 3, 2019 19:26
Show Gist options
  • Save jotaki/1909b50d2405969610c5ef8cc71052bc to your computer and use it in GitHub Desktop.
Save jotaki/1909b50d2405969610c5ef8cc71052bc to your computer and use it in GitHub Desktop.
Not the traditional Hello, World
#include <stdio.h>
int main(int argc, char *argv[])
{
int i;
for(i=0;i<argc;i++) {
printf("Argument %d: %s\n", i, argv[i]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment