Wesley13 Wesley13
2年前
vs关于_CRT_SECURE_NO_WARNINGS警告说明
在VS中调用strcpy、strcat等函数时会提示\_CRT\_SECURE\_NO\_WARNINGS警告,原因是这些函数不安全,可能会造成内存泄露等。比如:1:include<stdio.h2:include<stdlib.h3:include<string.h4:
Wesley13 Wesley13
2年前
CRT源码
CRT的源码分为3部分:1.cC语言2.cppc3.asm性能优化汇编版本strcatchar  __cdecl strcat (        char  dst,        const char  src        )
Stella981 Stella981
2年前
CPP strcat函数使用
strcat函数原型charstrcat(chardestination,constcharsource);strcat常见写法//main.cpp//字符数组strcat()函数的使用//charstrcat(charde