How can I convert a float value to char* in C language?
float
char*
C
char array[10]; sprintf(array, "%f", 3.123);
sprintf: (from MSDN)