Defined in header <string.h> (1) char *strncat( char *dest, const char *src, size_t count ); (until C99) char *strncat( char *restrict dest, const char *restrict src, size_t count ); (since C99) errno_t strncat_s(char *restrict dest, rsize_t destsz,
const char *restrict src, rsize_t count); (2) (since C11)
1) Appends at most count characters from the character array pointed to by src, stopping if the null character is found, to the end of the