fstream theFile; theFile.open( "genres.txt" , ios::in); for ( int i = 0; i < numStrings; i++) theFile.getline( inList[i], maxLength ); // populate inList ...
www.cplusplus.com