Two useful C library functions
strcpy(dest, source)
strcat(dest, source)
- source points to the initial character of a null-terminated character array
- in the case of strcat, dest also is the initial character of a null-terminated array
- in either case, the dest array must have enough room for the result