void main()
{
int n = 123;
int a,b,c;
a = n/ 100;
b =(n/ 10)% 10;
c = n % 10;
printf("%c%c%c\n ",a+48,b+48,c+48);
}
Use ASCII output, you can look up the ASCII code table, don't say you don't understand! !