Outpost Universe Forums
Off Topic => General Interest => Topic started by: Spikerocks101 on February 08, 2010, 11:45:33 PM
-
Ok, this is probably a dumb question, but how do I convert an int into a char[]? Here kinda what I want done:
//I have a int score
int score;
//I need something like char[]
char[20] myCharArray;
//I want it to have the words "Score: " in it then the score
myCharArray = "Score: " + score;
//then I output it to a function to render on the screen
render(myCharArray);
So in total, I want it to look like "Score: 35"
Any help?
-
use sprintf (http://www.cplusplus.com/reference/clibrary/cstdio/sprintf/)
-
sometimes, i really wish i knew the simple stuff. thanks, it worked well. :D