Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Can someone explain to me how while(getline()) works in c++? What makes the loop even start? For example, say I have an input file. ifstream

Can someone explain to me how while(getline()) works in c++? What makes the loop even start? For example, say I have an input file.

ifstream inFile;

inFile.open("input.txt");

string str;

int LENGTH = 0;

while(getline(inFile,str))

{

LENGTH++;

}

cout<

This gives the number of rows in the file. I don't understand why. Can someone explain what's going on here?

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions

Question

=+ What is the opportunity?

Answered: 1 week ago