Question: 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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!