Possible Duplicate:
Easiest way to convert int to string in C++
I have a question about Visual C++ Strings. I want to concatenate the next string.
for (int i=0; i<23; i++)
{
imagelist.push_back("C:/x/left"+i+".bmp");
imagelist.push_back("C:/x/right"+i+".bmp");
}
Thx