add #include <vector>
to your includes
Amit
Main Topics
Browse All TopicsI have to read a text file samp.txt and store line by line in STL vectors. That has 10 lines. I have to read the lines from 3 to 6 that start with the word "st" and ends with word "ed". Explain with the sample code.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Its similar to your previous question,
http://www.experts-exchang
Just to add vector functionality
use the link in the above post to see examples for vector processing
Amit
int main()
{
int count = 0 ;
vector <string> vecStr ;
string strLine,whole,a,b;
ifstream ifile ("samp.txt") ;
while ( getline ( ifile, strLine ) ) {
vecStr.push_back(strLine);
cout<<endl<<strLine;
}
}
The above program prints all the 10 lines from samp.txt. I can access the first line as vecStr[0]. Is there any other way to print the lines from 3 to 6.
Business Accounts
Answer for Membership
by: Sys_ProgPosted on 2004-03-05 at 20:51:45ID: 10529531
Sounds like a homewok, so wont give the actual code
The foll should help
int count = 0 ;
vector <string> vecStr ;
ifstream ifile ( "c:\a.txt" ) ;
while ( getline ( ifile, strLine ) ) {
vecStr [count] = strLine ;
count ++ ;
}
A refernce to STL vector
http://www.cppreference.co
Amit