Skip to content

Instantly share code, notes, and snippets.

@mdaisuke
Created October 14, 2017 11:34
Show Gist options
  • Save mdaisuke/bce85c24d075ae093b03db0092c99407 to your computer and use it in GitHub Desktop.
Save mdaisuke/bce85c24d075ae093b03db0092c99407 to your computer and use it in GitHub Desktop.
Test Yourself - Joel on Software
#include <stdio.h>
int main(int argc, char **argv) {
int i;
for (i = 1; i < argc; i++) {
printf("%c", argv[i][0]);
}
printf("\n");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment