I want to make a class of a student and take 3 inputs information and make an output of this file. How to this? This is my try:
#include usi
You have to overload << and >> operators for ostream and istream
<<
>>
ostream
istream
std::ostream& operator<< (std::ostream& stream, const Student& student) std::istream& operator<< (std::istream& stream, Student& student)
make them friend and implement