C++ Programming/Code/Standard C Library/Functions/strncpy

strncpy edit

Syntax
#include <cstring>
char *strncpy( char *to, const char *from, size_t count );

The strncpy() function copies at most count characters of from to the string to. Only if from has less than count characters, is the remainder padded with '\0' characters. The return value is the resulting string.

Note:
Using strings not padded with the '\0' character can create security vulnerabilities.

Related topics
memcpy - strchr - strcpy - strncat - strncmp