El nombre lo dice… si quieren transformar de Decimal a los numeros Octales
#include<stdio.h>
#include<stdlib.h>
main()
{
int h;
printf(“Escriba el numero\n”);
scanf(“%d”,&h);
printf(“El numero transformado en octal es %o\n “,h);
system(“pause”);
return(0);
}
