I have been looking for the way that integers are converted to characters. I understand that there are ways using modulo and division to extract each number. I am looking for the way that programming languages do this.
Example:
int a = 101;
printf("%d\", &a);
This prints 101 to the console.
I want to understand how the bits 01100101 turn into "101" at the processor level.