#include int main() { int no; printf("Enter a number:"); scanf("%d",&no); printf("8's : %o\n",no); printf("16's : %x\n",no); return 0; }