Header: string.h
Syntax:
extern char *strncat
(
char *dest,
const char *src,
size_t n
);
Purpose: This function appends up to n characters of src onto the end of dest. A null terminator is then always added, therefore buffer dest must be at least n+1 bytes long.
|
|
|