当在vs2019编译器下使用strcat 或者strncat 函数时

出现以下问题

错误 C4996 'strncat':

This function or variable may be unsafe. Consider using strncat_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.

此时打开左上角 项目 -> (看到最后一行的) 属性

在应用strcat和strncat 函数时‘strncat‘: This function or variable may be unsafe. Consider using strncat_s_ide

在预处理器定义添加

_CRT_SECURE_NO_DEPRECATE

在应用strcat和strncat 函数时‘strncat‘: This function or variable may be unsafe. Consider using strncat_s_预处理_02

确定 -> 应用

此时就可以用strcat / strncat 而不用使用strcat_s / strncat