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);