char buff[100];
int num = 25;

sprintf(buff, "%i", num);

or even:

sprintf(buff, "Num = %i", num);