char *strncpy( char *dest, const char *src, size_t maxlen )
- prototype in string.h - copies exactly maxlen characters from src to dest, truncating or null-padding dest - dest might NOT be null-terminated if length of src >= maxlen
- prototype in string.h - copies exactly maxlen characters from src to dest, truncating or null-padding dest - dest might NOT be null-terminated if length of src >= maxlen