Please show the complete call toitoa() with parameters. On the uint8_t issue:\'u\'for unsigned,\'int\'for integer and\'8\'for 8 bits. the\'_t\'is just a convention used on some types. So its an unsigned 8-bit integer....
Code:itoa(atoi(SUM)*=i,SUM,10); That wont work because atoi(SUM) will not multiply by i for some reason. How do i fix this. Also the value of atoi(SUM.
itoa(atoi(SUM)*=i,SUM,10);. That wont work because atoi(SUM) will not multiply by i for some reason. How do i fix this. Also the value of atoi(SUM) is too big to be held as an integer of any type which is why i am using a char array for...