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?