I have a fraction class , I have written functions for almost all the operators like + , - , = , / , * etc.
I have also done it for f1 = 2/3 , f2 = 7.5 where f1 and f2 are fraction objects.
But I dont know how to overload multiple assignment operator i.e.
f1 = f2 = 7.5;
Please help.