121. Data Conversion and Encoding-i

Question.5

A developer converts a 4-bit nibble (0–15) to its hex character for a debug hex dump:

char nibble_to_hex(uint8_t n) {
   return (n < 10) ? ___ : ___;
}

What goes in the two blanks?

Need Help? Refer to the Quick Guide below

Select Answer