![]() |
![]() |
![]() |
Concatenate two strings, up to a maximum length
#include <string.h> char* strncat( char* dst, const char* src, size_t n );
libc
The strncat() function appends no more than n characters of the string pointed to by src to the end of the string pointed to by dst. The first character of src overwrites the null character at the end of dst. A terminating null character is always appended to the result.
The value of dst.
#include <stdio.h> #include <stdlib.h> #include <string.h> char buffer[80]; int main( void ) { strcpy( buffer, "Hello " ); strncat( buffer, "world", 8 ); printf( "%s\n", buffer ); strncat( buffer, "*************", 4 ); printf( "%s\n", buffer ); return EXIT_SUCCESS; }
produces the output:
Hello world Hello world****
Safety: | |
---|---|
Cancellation point | No |
Interrupt handler | Yes |
Signal handler | Yes |
Thread | Yes |
![]() |
![]() |
![]() |