vote up 0 vote down star

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);
flag
1  
What language are you using? – Emily Oct 12 at 23:42
Looks like plain old C to me. – rein Oct 12 at 23:45
snprintf and friends are probably quite efficient. – Kinopiko Oct 12 at 23:48

2 Answers

vote up 2 vote down

Looks like you are using Visual C++. There are also _fcvt_s, _ecvt_s, and _gcvt_s. A main difference from _snprintf_s is that they do not parse a format string, so they should be a little more efficient. The C runtime libraries functions are generally well-tuned, so you probably can't go wrong with any of them.

link|flag
vote up 0 vote down

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:

if (v < 0){
  strcat(s, "-"); s++;
  v = -v;
}
double di = floor(v);
double frac = v - di;
int i = (int)di;
int f = (int)floor(frac * 1e10);
strcat(s, itoa(i)); s += strlen(s);
strcat(s, "."); s++;
strcat(s, itoa(f)); s += strlen(s);

but I bet you've got bigger fish to fry somewhere else.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.