Operator overloading : cannot add two pointers
问题 I created a Fraction class that is has member functions to add, subtract, multiply, and divide between two Fraction Objects along with the required default and copy constructors. For this problem, I must used pointers (cannot use vectors!) because the Fraction objects can only be created if the user chooses to. In short, the pointer declaration and new initialization are in difference scopes. I am trying to also overload the operator=, operator+, operator-, operator*, and operator/ to accept