Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~202 People Reached
About Me

Me in a nutshell

Interests
Programming
PC Specs
Windows
Favorite Forums
Favorite Tags
c++ x 1
Member Avatar for melisasimjiaqi

void ascending() { int i=0; const int SIZE = 20; DrinkRecord s[SIZE]; system("cls"); ifstream infile; infile.open("drinks.txt");//open your file if(!infile)//check to make sure its open before trying to initialize list items { std::cout<<"\nUnable to open file!\n"; } vector<string> list;//create your empty list while(!infile.eof())//while the input stream has not reached the end …

Member Avatar for Maritimo
0
202