C Craig Powers Sep 2, 2003 #2 Duncan said: How can I convert from a double variable to a char* ??? Click to expand... There are a variety of options, including C I/O, the _ecvt / _fcvt / _gcvt library functions (which may not be portable), or a "lexical_cast" through a stringstream (see boost::lexical_cast).
Duncan said: How can I convert from a double variable to a char* ??? Click to expand... There are a variety of options, including C I/O, the _ecvt / _fcvt / _gcvt library functions (which may not be portable), or a "lexical_cast" through a stringstream (see boost::lexical_cast).