#include #define SIZE 80 int main() { char word1[SIZE + 1] = {'h', 'e', 'l', 'l', 'o', '\0'}; char word2[SIZE + 1] = "goodbye"; int i; printf ("\nContents of word1 array: "); for (i = 0; i < SIZE + 1; i++) printf ("%c", word1[i]); printf ("\n\n"); printf ("Contents of word2 array: "); for (i = 0; i < SIZE + 1; i++) printf ("%c", word2[i]); printf ("\n\n"); /* Note: When viewing non-printable characters using a.out | od -c you will notice a lot of null characters since we are printing out the ENTIRE contents of the array i.e. 81 elements (i.e. SIZE + 1 ) elements in the array. It would be nice if we only print out the character string contents in the array - you will learn how to do this later by using the strlen() function later in these string examples */ }