In python, the following instruction: print \'a\'*5 would output aaaaa. How would one write something similar in C++ in conjunction with std:
print \'a\'*5
aaaaa
std:
You can do something like that by overloading the * operator for std::string. Here is a small example
*
#include #include std::string operator*(const std::string &c,int n) { std::string str; for(int i=0;i