strcat

example

strcpy(str1, "abc");
strcat(str1, "def"); /* str1 is now "abcdef" */

strncat is safer.

standard

wood

related

backlinks