Strings
string is a special type of array: an array of characters terminated by a null or ‘\0’
Standard library string.h provides functions that can be used with string data type.
Some of the functions: strcpy, strcmp, strcat
Strings can be input and output using the regular cin and cout respectively.
You can declare string type and variables as follows:
typedef char string [MAX_LEN + 1];