We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
I would like to know where can I get the function itoa or how can I implement a function that can do this task. I am working with the C51 compiler. Thanks. Nelson.
Itoa() is not an ANSI/ISO C function. Microsoft has one but it is listed as _itoa(), where the _ means non-ANSI. There's always:
sprintf(pString, "%d", integer);