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