Name: Anonymous 2007-05-04 15:05 ID:E3M9p2QX
C++.
I have an array of strings.
I want to read into this from cin until there is nothing left in the buffer.
i.e. input = "hello my name is anon"
i want the equivalent of
for(int i = 0; i < 5; i++)
cin >> arrayName[i];
for any number of words
is there some sort of flag i can use?
I have an array of strings.
I want to read into this from cin until there is nothing left in the buffer.
i.e. input = "hello my name is anon"
i want the equivalent of
for(int i = 0; i < 5; i++)
cin >> arrayName[i];
for any number of words
is there some sort of flag i can use?