CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: martynasj

Search: Search took 0.06 seconds.

  1. Replies
    9
    Views
    1,964

    Re: work with text file

    Thank you I will try that :)
  2. Replies
    9
    Views
    1,964

    Re: work with text file

    Sorry I don't realy understand what you trying to say me.
  3. Replies
    9
    Views
    1,964

    Re: work with text file

    I tried do like this:


    ifstream fin("duom.txt");
    while (!fin.eof()){


    getline(fin, lin);
    words.push_back(lin);
    cout<<"What word you are looking for?"<<endl;
  4. Replies
    9
    Views
    1,964

    Re: work with text file

    How to save whole line in vector, is there a function for that?
  5. Replies
    9
    Views
    1,964

    work with text file

    Hello, I have a text file where in each line is 3 words and 2 int type numbers. I'm doing search by word and I want to print out to the screen the whole line where that word was found (the words is...
Results 1 to 5 of 5





Click Here to Expand Forum to Full Width

Featured