Hi,
I have a project that I am struggling with – I have a class Fraction - Constructor = Fraction(int numerator, int denominator) – and I need to create a member function add that adds two fraction objects with and without overloading the + operator. I have figured out the member function that overloads the + operator, but I have no clue how to code the member that doesn’t overload the + operator. The member function call would be a.add(b). Can anyone give me any pointers?? Can I “tweak” the member function that overloads the + operator? Please let me know if you need me to post any code