// strcat example // source: http://www.cplusplus.com/ #include #include #include #define SIZE 80 int main() { char str[SIZE]; strcpy(str,"Professor "); strcat(str,"Andrew "); strcat(str,"Thomas "); strcat(str,"Campbell"); puts(str); return EXIT_SUCCESS; }