strncat
cppreference.com
[] |
Google. . , . , . |
<metanoindex/>
<tbody> </tbody> <string>
|
||
char *strncat( char *dest, const char *src, size_t count ); |
||
,
src , dest. count . . , . :
Appends a byte string pointed to by
src to a byte string pointed to by dest. At most count characters are copied. The resulting byte string is null-terminated. If the strings overlap, the behavior is undefined. | dest | ||
| src | ||
| count |
dest
| : |
.
| () | |
| () | |
C++ strncat
| |