I'm a beginner in programmation and I've been having trouble for a function called by SDL_TTF:
SDL_Surface *TTF_RenderText_Solid(TTF_Font *font, const char *text, SDL_Color fg);
This allows to create a surface with text in it, but my problem is that I need to send numbers to the second parameter. The second parameter only accepts char variables, while my variable is an int...
Is there any way to bypass that by stocking the int number into a char variable... or a way to type the second parameter so that it accepts int variables? huh..