标签: c++
我想问一下如何将整个单词存储到单个数组插槽中?
我想要做的是以某种方式使这个或类似于这项工作的东西,以便我可以在一个数组的一个插槽中访问一个完整的单词:
string words; words[0] = "First"; words[1] = "Second";
答案 0 :(得分:3)
如果您希望words成为数组,请将其设为数组
words
string words[2]; words[0] = "First"; words[1] = "Second";