In my C++ program, it contains 2 CHAR variables and the idea is to add these two together.
For example the decimal number 5 (53 ASCII) + decimal 6 (54 ASCII), when you add these two they should give you 5+6=11 Decimal (53+54=107 ASCII) but 107 isn't the number 11 in ASCII, it is the character "k".
My question is: How can i make sure that the decimal number 11 can be interpreted in ASCII, What process do I have to do, so it can be shown on console?