I simply want to convert a float into a string or at least a char array. However I always get wrong returns. For example the length is over 150000 while I want to convert 3.3... For integer to_string works great. But not floating points.
string str=to_string(3.3f);