#include <stdio.h>
#include <string.h>
int main() {
char word[] = "Computer";
printf("The word '%s' has %d characters in it.", word, strlen(word));
return 0;
}