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

Search:

Type: Posts; User: hypheni

Search: Search took 0.04 seconds.

  1. Replies
    5
    Views
    15,431

    Re: Read text file in VC++

    Which file. No file is storing here. You need to input file name, the file you want to read
  2. Replies
    5
    Views
    15,431

    Re: Read text file in VC++

    You can use fstream to read text file that will be even easy and simple.


    ifstream fileRead("your file");
    while ( ! fileRead.eof() )
    {
    /** Do your stuffs here **/
    }
Results 1 to 2 of 2





Click Here to Expand Forum to Full Width

Featured