Created
April 3, 2019 19:26
-
-
Save jotaki/1909b50d2405969610c5ef8cc71052bc to your computer and use it in GitHub Desktop.
Not the traditional Hello, World
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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