Is it possible to multiply a char by an int?
For example, I am trying to make a graph, with *\'s for each time a number occurs.
So something like, but this d
You could do this:
std::cout << std::string(7, '*');