I have to concatenate integer with a string as follows, user will enter a number e.g. 1
and it will be be placed in string like this:
std::remove("C:/Users/pcname/Desktop/files/1.txt");
If user enters 2
, it's like
std::remove("C:/Users/pcname/Desktop/files/2.txt");
It's pretty basic but I'm having issue with this I tried to use operator+
with this but that did not work.