#include<stdio.h>

/* 
 * Terry Harvey CISC105 section 010 TA Quantox Smith 
 *  
 * What happens to word2 if you type an eight letter word into word?
 */


int main(){
    char word2[] = {"conflict"};
    char word[8];
    double d;

    printf("Enter a string:");
    scanf("%s", word);

    printf("word is %s, word2 is %s\n", word, word2);
    return 0;
}
