Hello,
You can use sprintf, but the limitation of this function is that you will need to know how long your double is:
double num;
char str[length of double];
sprintf(str, "%2f", num);
If you want to convert an array of doubles to an array of characters, you could also use the function ConvertArrayType() in the Programmer's Toolbox.
Thanks.
Wendy L
LabWindows/CVI Developer Newsletter