the strcpy-function returns a pointer-to-char. Must you write a variabele of the type pointer to char , an assignment-operator, and then the strcpy-function?
Or can you just write the strcpy-function?
It's in both namespaces. <cstring> includes <string.h> and then pulls all the functions to the std namespace. I THINK using the non-std:: version is deprecated but it has EXACTLY the same behavior.