Or login with:
#include <string.h>| char | stpcpy (char *dst, const char *src) |
| char | strcpy (char * restrict dst, const char * restrict src) |
| char | strncpy (char * restrict dst, const char * restrict src, size_t len) |
src to dst (including the terminating '\0' character.)
The strncpy function copies at most len characters from src into dst. If src is less than len characters long, the remainder of dst is filled with '\0' characters. Otherwise, dst is not terminated.dst. The stpcpy function returns a pointer to the terminating '\0' character of dst.
char chararray[6]; (void)strncpy(chararray, "abc", sizeof(chararray));
You must login to leave a messge