format double
C / C++ / MFC
4
Posts
3
Posters
0
Views
1
Watching
-
hello, I am looking for a way to convert a double to the char representation. e.g. double x=12.3456 char y[10]; :)
Have a look at sprintf. The Ten Commandments For C Programmers
-
hello, I am looking for a way to convert a double to the char representation. e.g. double x=12.3456 char y[10]; :)
See
CString::Format()
orsprintf()
. /ravi Let's put "civil" back in "civilization" http://www.ravib.com ravib@ravib.com -
See
CString::Format()
orsprintf()
. /ravi Let's put "civil" back in "civilization" http://www.ravib.com ravib@ravib.com