Outpost Universe Forums

Off Topic => General Interest => Topic started by: Spikerocks101 on February 08, 2010, 11:45:33 PM

Title: Int To Char
Post 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?
Title: Int To Char
Post by: ray on February 09, 2010, 08:19:32 AM
use sprintf (http://www.cplusplus.com/reference/clibrary/cstdio/sprintf/)
Title: Int To Char
Post by: Spikerocks101 on February 09, 2010, 10:52:02 AM
sometimes, i really wish i knew the simple stuff. thanks, it worked well. :D