Hello.

I have two uint8_t values that i would like to combine in a char array. I know I can use sprintf to store one of them in a char array, like shown below. How do i append the other one?

Thanks a lot for helping me out

uint8_t adc_readingL = 174;
uint8_t adc_readingH = 236;
unsigned char adc_reading_chars[4];
sprintf(adc_reading_chars, "%i", adc_readingL);