#include <stdio.h>
#include <string.h>
/* Terry Harvey CISC105 Section 21 TA Aaron*/

/* Sample program for class */

int main(){

    char word[10] = "spam";

    printf("%s\n", word);

    printf("%c\n", word[4]); //what is this?
    printf("%c\n", '\0');

    strlen(word);

    return 0;
}
