Keil provides an atoi (char to integer conversion) function in its standard libraries. I can't seem to find the reverse routine itoa (integer to char conversion). Does one exist? Which library should I include?
Can you get by with sprintf()?
char numStr[10]; int var1 = 1234; sprintf(numStr, "%d", var1);