#include #include /* need to include for strlen, strcmp, strcpy functions */ #define SIZE 80 int main() { char word[SIZE + 1] = {'h', 'e', 'l', 'l', 'o', '\0'}; printf ("\nThe number of characters in the array called word is %d\n\n", strlen(word)); }