Here is a portion of my code, im trying to string copy my description (from my main.cpp) to my name char variable, im getting an error under strncpy_s that says:
no instance of overloaded function "strncpy_s" matches the argument list
argument types are: (const char *, char *)
Do not use any *_s functions. They are not part of the standard and are mainly MS extension. DIfferent compilers define them in different way. You can just use strcpy here.