Introduction - If you have any usage issues, please Google them yourself
Specify a number of conversion back to decimal, octal, hexadecimal# Include <stdio.h># Include <stdlib.h> int main (void) (int number = 89 printf ( number of d , number)/* d for decimal output format*/printf ( octal to o , number)/* o for the eight binary output format*/printf ( hexadecimal is x , number)/* x for hexadecimal output format*/system ( pause ) return 0)