大神求解答
_CRT_SECURE_NO_WARNINGS错误提示,解决办法_任逍遊 --- [专用空间]-CSDN博客__crt_secure_no_warnings #include <stdio.h>int main(void){ char str[256] = {0}; scanf("%255s",str); printf("Hello World!\n"); printf("%s\n",str); return 0;}一个简单的C的Hello World,如果用高版本的VS来编译,会提示... https://blog.csdn.net/duke56/article/details/52403458
系统告诉你:函数wcscpy使用不安全,用wcscpy_s替换