此指针存在问题。
我很确定那里有人可以解决我的问题...
#include "stdafx.h"
#include <stdio.h>
#include <string.h>
int main()
{
char str_a[20];
char *pointer;
char *pointer2;
strcpy_s(str_a, "Dear World!\n");
pointer = str_a;
printf(pointer);
pointer2 = pointer + 2;
printf(pointer2);
strcpy_s(pointer2, "idn't even notice!\n");
printf(pointer);
getchar();
return 0;
}
我明白了
错误代码C2660
我该怎么办?
答案 0 :(得分:0)
您需要更改strcpy_s调用以包括目标位置大小
server.tomcat.max-http-post-size=10000000
PS-您可以通过我的注释(指出了strcpy_s的文档)来解决这个问题