Hi I am using the IAR and I'm willing to show an int on a display, but the function only accepts char. I try to convert int to char with this function for example.
int i = 10;
char buffer [33];
itoa (i, buffer, 10);
PrintStr (buffer);
But it gives the following error: Error [e46]: Undefined external "itoa" referred in main
can someone explain what is happening?