Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Can someone break down this code line by line for me and tell me what each line means? int readBooks(string filename, string titles[], string authors[],int

Can someone break down this code line by line for me and tell me what each line means?

int readBooks(string filename, string titles[], string authors[],int currentSize,int maxCapacity){

ifstream inFile(filename.c_str());

if(!inFile){

return -1;

}

string line;

int size=currentSize;

while(getline(inFile,line) && size

istringstream stream(line);

string token; //to represent a single token

getline(stream,token,',');

authors[size]=token;

getline(stream,token,',');

titles[size]=token;

size++;

}

inFile.close();

return size;

}

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

Recommended Textbook for

More Books

Students also viewed these Databases questions