[Solved] “strncpy_s” Not Working
Your code has several issues. First of all, your call to strncpy_s does not follow the declaration of strncpy_s, which lists four parameters (if the first parameter is a char * as in your case): errno_t strncpy_s( char *strDest, size_t numberOfElements, const char *strSource, size_t count ); But much more importantly, you state that you … Read more