summaryrefslogtreecommitdiff
path: root/wk2/sect2/initials.c
blob: 45a36c682f3db24f10100ce225f91d1bfc76256f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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");
}