我正在 VS 2010 中使用 c 语言开发控制台应用程序
char rsp[25][9]; //rsp is properly populated by another function suppose it contain three values hello,Goodbye,See you
char txt[] = "Message: ";
int i=0;
while(i<25)
{
strcat(txt,rsp[i]);
i++;
}
我想将 txt[ ] 与 rsp[ ][ ] 的每个字符串连接起来,但是它在 strcat(txt,rsp[i]) 上崩溃,请指出错误