Implement an operator* operator function so that one can repeat strings a given number of times. For example, string greeting = "hi"; string result = greeting * 3; should set result to "hihihi"



Answer :

Other Questions