Right now, the only function that I am aware of is _snprintf_s like the following
double dMyValue = <some value>;
_snprintf_s(pszMyBuffer, sizeof(pszMyBuffer), 12, "%.10f", dMyValue);
|
|
Right now, the only function that I am aware of is
|
||||||||
|
|
|
Looks like you are using Visual C++. There are also |
||
|
|
|
|
If you happen to know the value is limited to a certain range, you might be able to beat the built-in function. For example:
but I bet you've got bigger fish to fry somewhere else. |
||
|
|