example usage g_snprintf
char string[2]; //Number of digits + an extra space for the null character.
int score = 1;
g_snprintf(string, 2, "%i", score); // Overwrites string with the content of score.