I have a uint32_t variable. I want to print its ASCII equivalent value. can anyone help me here.
Have they not covered division/modulus in school yet?
puts(itoa(1295069232));
I am not much familiar about ASCII conversion but i have a 32 bit unsigned integer which have "1295069232" this value. I want to convert the whole value to ASCII.
I used the following code in my dissertation last year and I was told it was an unusual solution. I let you must adapt and extend the following
char *ConvertIntToString ( int Value ) { switch ( Value ) { case 0: return "0"; case 1: return "1"; case 2: return "2"; case 3: return "3"; case 4: return "4"; case 5: return "5"; case 6: return "6"; case 7: return "7"; case 8: return "8"; case 9: return "9"; default: return "ERROR: TOO LARGE"; } }
View all questions in Keil forum