So I need help creating a program that will open a file and read the data from the file into an array of structs and then calculate a variety of things like highest, lowest, ave
This should read all your data into the array, you'll want an incrementor to
ifstream inStream; inStream.open("scores.txt");
while (!inStream.eof()) { inStream >> StudentData arr[SIZE]; }; inStream.close();