diff options
Diffstat (limited to 'wk2/sect2/initials.c')
-rw-r--r-- | wk2/sect2/initials.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/wk2/sect2/initials.c b/wk2/sect2/initials.c deleted file mode 100644 index 45a36c6..0000000 --- a/wk2/sect2/initials.c +++ /dev/null @@ -1,13 +0,0 @@ -#include <stdio.h> -#include <ctype.h> -#include <cs50.h> -#include <string.h> - -int main(int argc, string argv[]) -{ - for (int i = 1; i < argc; i++) - { - printf("%c", argv[i][0]); - } - printf("\n"); -} |