Use the function to print a formatted string into another string, sprintf(char*, const char*, ...);. Example of use :
// Make sure your string has enough space
char string[100];
float nb = 374619.716183
sprintf(string, "%f", nb);
Also note that sprintf returns the number of characters that were printed.