Front-end Tutorials

Front-end Tutorials

HTMLCSSSassJavaScriptReactJS
CMS Tutorials

CMS Tutorials

WordPress
Tutorials expand

C Program to Converter a Decimal to Octal

Posted in C Tutorial
Updated on Jan 11, 2024
By Mari Selvan
πŸ‘οΈ 48 - Views
⏳ 4 mins
πŸ’¬ 1 Comment
C Program to Converter a Decimal to Octal

Photo Credit to CodeToFun

πŸ™‹ Introduction

In the world of programming, converting numbers from one base to another is a common task.

Decimal to octal conversion is a fundamental operation where we transform a decimal (base-10) number into its octal (base-8) equivalent.

In this tutorial, we'll explore a C program that performs this conversion efficiently.

πŸ“„ Example

Let's delve into the C code that performs the decimal to octal conversion.

decimalToOctal.c
Copied
Copy To Clipboard
#include <stdio.h>

// Function to convert decimal to octal
void decimalToOctal(int decimalNumber) {
  int octalNumber[100], i = 0;

  // Convert decimal to octal
  while (decimalNumber != 0) {
    octalNumber[i] = decimalNumber % 8;
    decimalNumber = decimalNumber / 8;
    ++i;
  }

  // Display the octal number in reverse order
  printf("Octal equivalent: ");
  for (int j = i - 1; j >= 0; --j) {
    printf("%d", octalNumber[j]);
  }

  printf("\n");
}

// Driver program
int main() {
  // Replace this value with your desired decimal number
  int decimalNumber = 57;

  // Call the function to convert decimal to octal
  decimalToOctal(decimalNumber);

  return 0;
}

πŸ’» Testing the Program

To test the program with different decimal numbers, replace the value of decimalNumber in the main function.

Output
Octal equivalent: 71

Compile and run the program to see the octal equivalent.

🧠 How the Program Works

  1. The program defines a function decimalToOctal that takes a decimal number as input and converts it to octal.
  2. Inside the function, it uses a while loop to repeatedly divide the decimal number by 8 and store the remainders in an array.
  3. The function then displays the octal equivalent by printing the elements of the array in reverse order.

🧐 Understanding the Concept of Decimal to Octal

Decimal and octal are different number systems. Decimal uses base-10 (0 to 9), while octal uses base-8 (0 to 7). The process of converting a decimal number to octal involves dividing the decimal number by 8 repeatedly and noting the remainders in reverse order.

For example, let's convert the decimal number 57 to octal:

57 Γ· 8 = 7 remainder 1
7 Γ· 8 = 0 remainder 7

So, the octal equivalent is 71.

🎒 Enhancements to the Program

Consider exploring enhancements to the program, such as handling negative decimal numbers, input validation, or optimizing the conversion process.

Feel free to incorporate and modify this code as needed for your specific use case. Happy coding!

πŸ‘¨β€πŸ’» Join our Community:

To get interesting news and instant updates on Front-End, Back-End, CMS and other Frameworks. Please Join the Telegram Channel:

Author

author
πŸ‘‹ Hey, I'm Mari Selvan

For over eight years, I worked as a full-stack web developer. Now, I have chosen my profession as a full-time blogger at codetofun.com.

Buy me a coffee to make codetofun.com free for everyone.

Buy me a Coffee

Share Your Findings to All

Subscribe
Notify of
guest
1 Comment
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Mari Selvan
Mari Selvan
4 months ago

If you have any doubts regarding this article (C Program to Converter a Decimal to Octal), please comment here. I will help you immediately.

We make use of cookies to improve our user experience. By using this website, you agree with our Cookies Policy
AgreeCookie Policy