正如您将看到的,我在 c 编程方面并不擅长,仍在学习,但我的 WindowsDefender 因使用 Codeblocks IDE 中的 MinGW 编译此代码而对我大喊大叫。
#include <stdio.h>
#include <string.h>
int main(void){
char *strings[] = {"test", "test"};
char *newStr;
int i;
for(i=0;i<2;i++){
strcat(newStr, strings[i]);
printf("%s\n", newStr);
}
return 0;
}
你能帮我解决这个问题吗?我不知道这是怎么回事。这不可能是一个正常的问题mh?