strcat_s 在VS里面的问题,运行一直出错
#include<stdio.h>#include<string.h>
void main()
{
char a[15] = "22";
char b[3] = "1";
printf("%s", strcat_s(a, sizeof(a), "23"));
}
这个是代码,结果是NULL。为什么啊
2015-11-26 19:32
2015-11-26 21:52

2015-11-26 21:53