私は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]) でクラッシュします。間違いを指摘してください