c 2b 2b operator overloading too many parameters

Solutions on MaxInterview for c 2b 2b operator overloading too many parameters by the best coders in the world

showing results for - "c 2b 2b operator overloading too many parameters"
Lina
24 Feb 2019
1friend ostream& operator<<(ostream& out, int x){
2     out << names[x] << " " << ages[x] <<endl;
3     return out;
4}