Skip to content

Instantly share code, notes, and snippets.

@dafyddcrosby
Created July 30, 2013 03:05
Show Gist options
  • Save dafyddcrosby/6109872 to your computer and use it in GitHub Desktop.
Save dafyddcrosby/6109872 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(int argc, char ** argv){
unsigned i = 1;
if (argc > 1) {
prt:
printf("%s\n", argv[i]);
i++;
if (i < argc) {
goto prt;
}
return 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment