#include #include int main () { char * string = "This is a C string"; printf ("The length of '%s' is %d.\n", string, strlen (string)); return 0; }