String-Handling Functions
String Copy/String Length
With the declaration and initialization:
s1[10] ="The ";
s2[10] = "CZ";
The function (with string.h included)
strcpy(s1, s2) copy the second string s2 into the first string s1.
strlen(s1) returns 4 (for there are four characters before the null character '\0').