Convert Decimal to Octal Program in C++

Advertisements

Prev Tutorial Next Tutorial

C++ program to Convert Decimal to Octal

A repeated division and remainder algorithm can convert decimal to binary, octal, or hexadecimal.

Algorithom for Number Conversion

  • Divide the decimal number by the desired target radix (2, 8, or 16).
  • Append the remainder as the next most significant digit.
  • Repeat until the decimal number has reached zero.

Before write decimal to octal conversion code you must be basic kanowledge about For Loop in C++, While Loop in C++ and Modulus Operator in C++.

C++ program to convert Decimal to Octal


#include<iostream.h>
#include<conio.h>

void main()
{
int no,rem[20],i=0,j;
clrscr();
cout<<"Enter any Decimal Number: ";
cin>>no;
while(no>0)
{
rem[i]=no%8;
i++;
no=no/8;
}
cout<<"Binary Number is: ";
for(j = i - 1; j > = 0 ; j--)
{
cout<<rem[j];
}
getch();
}

Output

Enter any Decimal Number: 23
Binary number is: 27
convert binary to decimal number in c++
Prev Tutorial Next Tutorial

Google Advertisment

Buy This Ad Space @$20 per Month, Ad Size 600X200 Contact on: hitesh.xc@gmail.com or 9999595223

Magenet is best Adsense Alternative here we earn $2 for single link, Here we get links ads. Magenet

For Projects 9999595223

Google Advertisements


Buy Websites 9999595223

Buy College Projects with Documentation Contact on whatsapp 9999595223. Contact on: hitesh.xc@gmail.com or 9999595223 Try this Keyword C++ Programs

Advertisements