Using the function strcpy
in MS Visual Studio gives me an error saying I should use strcpy_s
which is safer to use. Is strcpy_s
part of the C++ standard? Or is it only part of Microsoft Visual C++?
Will code containing strcpy_s
only compile in Visual Studio?