Read my question and you know that I'am a Neewbe :-)
How to convert, cast, transform, whatever a int value to a string?
include <string.h>
string my1String = "John has";
string my2String = "apples!";
int myInt = 6;
my1stString = my1stString + UNKNOWN_FUNC(myInt) + my2ndString;
As you guessed I'd like to get:
"John has 6 apples!"
Gregor
|