home *** CD-ROM | disk | FTP | other *** search
- main() /* strcat.c -- illustrates strcat() */
-
- {
- char result[20], *first, *second;
- first = "How now";
- second = " brown cow?";
-
- strcpy(result, first);
- strcat(result, second);
- puts(result);
-
- /* prints "how now brown cow" */
- }