#include <stdio.h>
#include <stdlib.h>

/*
 * Program to 
 * Terry Harvey CISC 105 section 98 TA James Jamerson
 *
 * Run this program with "arguments" by typing the command

 > a.out takes two arguments

 * and see what this program does with the extra words you typed.  Now
 * change "two" to 2 and run the command again. Uncomment the second
 * part of the code, and watch the characters 2 and \0 be converted to
 * the number 2 when you execute.

 */


//The traditional names for "count" and "words" are "argc" and "argv".

int main(int count, char * words[]){

    int i;
    int n;
    for(i = 0; i< count; i++){
        printf("%s\n", words[i]); //notice that each is printed with
                                  //%s, which means they are ________
    }

    //n = atoi(words[2]);
    //printf("an integer: %d\n", n);

    return 0;
}
