Convert Decimal To Octal Number C Program

By | August 27, 2016

C Program To Convert Decimal To Octal Number

Learn How To Convert Decimal To Octal Number in C Programming Language. This C code for Decimal Number to Octal Conversion makes use of pow() function, While loop and For loop.

Decimal Number

A Decimal Number has a base 10 and includes digits the following digits: 0 1 2 3 4 5 6 7 8 9

Octal Number

An Octal Number has a base 8 and includes the following digits: 0 1 2 3 4 5 6 7

Method 1: C Program To Convert Decimal To Octal Number using While Loop

Method 2: C Program For Decimal Number To Octal Conversion using For Loop

Method 3: C Program To Convert Decimal Number To Octal Value using Functions

Output

C Program To Convert Decimal To Octal using For and While Loop

If you have any compilation error or doubts in this C Program For Decimal Value to Octal Number Conversion, let us know about it in the Comment Section below.

Recommended Programs
C Program To Convert Hexadecimal Number into Binary Value
C Program To Convert Hexadecimal Number into Decimal Value
C Program To Find Magic Integer
C Program To Convert Octal Number into Decimal Value
C Program To Convert Decimal Number into Hexadecimal Value
C Program To Convert Temperature From Fahrenheit to Celsius
C Program To Convert Decimal Number into Binary Value
C Program To Convert Binary Number into Decimal Value
C Program To Convert Decimal into Binary, Hexadecimal and Octal Values

3 thoughts on “Convert Decimal To Octal Number C Program

  1. Sagar Kadam

    Thanks. This is one of the easiest Number System Conversion Programs.

    Reply
  2. Prabjot Singh

    I think there is a problem with math.h header file. I am getting a compilation error when I convert decimal number to octal as per the above c program.

    Reply
  3. Aditya Kumar Singh

    Please run and check for the octal equivalent of 170. It may give 251 but the actual conversion is 252

    Reply

Let's Discuss