summaryrefslogtreecommitdiff
path: root/wk2/sect2/cla.c
blob: 431b04c1de73a87ed0dd66d6f408e293e6419d17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdio.h>
#include <ctype.h>
#include <cs50.h>
#include <string.h>

int main(int argc, string argv[])
{
    for (int i = 0; i < argc; i++)
    {
        printf("argv[%i] is %s\n", i, argv[i]);
    }
}