strcat

Concatenates two character strings

#include <strings.h>
char *strcat (
        char *dest,
        const char *src
)

Arguments

dest Pointer to destination character string
src Pointer to source character string

Return Value

dest, a pointer to the concatenated string is returned.

Explanation

The string pointed to by src is concatenated to the end of the string pointed to by dest A pointer to the concatenated string is returned.

See Also

strncat()