Thread: need help for getline() funciton

  1. #1
    Registered User
    Join Date
    Jan 2002
    Posts
    80

    need help for getline() funciton

    hi;
    for example i have a file includes x lines
    how can i read all lines in a for loop?

    [code]

    for (..i..)
    {
    ptr.getline(buffer[i],100);
    }

  2. #2
    Registered User
    Join Date
    May 2003
    Posts
    12
    try
    for(int i=0;!filename.eof();i++)

  3. #3
    Guest Sebastiani's Avatar
    Join Date
    Aug 2001
    Location
    Waterloo, Texas
    Posts
    5,708
    That is incorrect. Since the end of file condition does not occur till after a read, the comparison is required at the top of the loop.
    Code:
    >> while(file.getline(/*this goes first*/) && file.good()) // certain
    >> {/*do it*/}
    >> if(!file.eof()) // optional
    >> {/*handle bad errors*/}
    Code:
    #include <cmath>
    #include <complex>
    bool euler_flip(bool value)
    {
        return std::pow
        (
            std::complex<float>(std::exp(1.0)), 
            std::complex<float>(0, 1) 
            * std::complex<float>(std::atan(1.0)
            *(1 << (value + 2)))
        ).real() < 0;
    }

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Passing an array in a funciton
    By jordanguyoflove in forum C Programming
    Replies: 5
    Last Post: 03-31-2009, 10:15 AM