• atof() function problem
    I am using keil IDE for arm7 (LPC2138 by NXP) programming. Here is my code. >> #include <LPC213X.H> #include "Stdlib.h" #include "Serial.h" void initialize(void); int main () { float number; int...
  • Problem with atof function
    Hello, I am writing a program with using RTX. I want to convert ascii buffer into a float using atof in a task. But this function works unreliable, program hang. If I try to debug this situation...
  • Problems with atof
    Hello, I had written a simple program. I want to convert ascii buffer into a float using atof. But this program can't link. An error occurs that no external symbol atof existing. the atoi funktion...
  • atof not working in LPC 1788
    I am writing Programm using LPC1788, with RTX os . Through out Programm i have used atof function many times, but now if m adding new atof function, it is not working Properly, even i dont get any error...
  • PROBLEMS WITH SPRINTF
    Hi I'm trying to convert a double number in scinetific notation into a string of 4 characters. I have written this code char result[4]; double corr; sprintf(result,"e", corr); corr is a decimal...