Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

#include <stdio.

h>
#include <stdlib.h>
/*
*
*/
int main(int argc, char** argv) {
int a;
scanf ("%d" ,&a);
printf("zecimal %d\n" ,a);
printf("octal %o\n" ,a);
printf("hexazecimal %0x\n" ,a);
getch();
return (EXIT_SUCCESS);
}

You might also like