我无法将字符串存储到数组中,当我输出b[c]
什么都没有出现时,如何将其存储到数组中?
int main(int argc, char *argv[])
{
string b[80000];
int c=0;
string s;
ifstream file(argv[1]);
while(file >> s) {
b[c]=s;
c++;
cout<<b[c];
}
system("pause");
return 0;
}