In this exercise, you will learn to convert decimal number to octal. Here we write a program that takes a decimal number as input and converts it into an equivalent octal number. Converting a decimal number to octal means converting the number with base value 10 to base value 8.
The base value of a number system determines the number of digits used to represent a numeric value. For example, the binary number system uses two digits 0 and 1, the octal number system uses 8 digits from 0-7 and the decimal number system uses 10 digits 0-9 to represent any numeric value.
Examples:
Output:
Enter a decimal number: 10
need an explanation for this answer? contact us directly to get an explanation for this answer12