This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

sprintf

Hai 

 I have a problem with sprintf() function.I want to store the float value in buffer but it is not done with sprintf().

i written like the 

float value=53.0000;

char buff[20];

sprintf(buff,"%f",value);

please sugget me that