Here is my code for an assignment I have. Whenever I try and compile I get an error for my read function due to something in \"ios_base.h\" I am not sure what to do and/or if my
Stream objects are not copyable. Their copy constructor is deleted. They must be passed by reference, not by value:
int read(ifstream &, Student s[]); void print(ofstream &fout, Student s[], int amount);
etc...