All,
I've used sprintf with no problems many times. But in my current program when I try and print out a floating point number I just get question marks.
sprintf(buffer, "%f", 4.1);
After running that line, buffer contains the string: "???"
Is there maybe a compiler option that is disabling floating point?
Thanks, Matt
Appearently printf is being pulled in from the mn_stack_common_038.lib file and not the standard file. Probably no way to include both, guess I'll use ftoa examples and create my own function.