Last Updated:
The strncat()
function concatenates a copy of source string to destination string up to the specified length and terminates destination string with a null.
The null terminator originally ending destination is overwritten by the first character of source string.
If the array overlap, the behavior of strncat()
is undefined.
Remember, no bounds checking takes place, so it is the programmer's responsibility to ensure that the size of the destination string variable is large enough to hold both its original contents and also those of source string.
Value | Type | Explanation |
---|---|---|
dest | Required | Specifies the destination string. |
src | Required | Specifies the source string. |
n | Required | Specifies the length of the characters to be concatenated. |
Value | Explanation |
---|---|
Address | Returns the pointer to the destination string. |