我说,我从来就没有学到这一点。 我以前从未这样做过。 我看到了<代码>strcat(S1,S2)的使用,但此处适用的是哪里?
我能做这样的事情。
string all_possible_strings[10];
char jumbled_chars[] = "ABCDEFG";
all_possible_strings[1] = jumbled_chars[0] << jumbled_chars[1]
<< jumbled_chars[2] << jumbled_chars[3]
<< jumbled_chars[4];
我想要做的是制定一项方案,使其所有可能的变迁不会产生任何影响。