When I tried to use strcpy
to copy a string it gave me a compile error.
error C4996 'strcpy': This function or variable may be unsafe.
Consider using `strcpy_s` instead. To disable deprecation,
use `_CRT_SECURE_NO_WARNINGS`. See online help for details.
What is the difference between strcpy
and strcpy_s
?