Home »
C programs
Number System Conversion Programs in C programming Language
Number System Conversations
As we know Number Systems are the technique to represent numbers in computer architecture and Number System Conversion is the process by which we convert a number from one number system to another, there are four number systems - Binary, Octal, Decimal and Hexadecimal.
C Number System Conversion Programs
This section contains C programs/Examples on Number System Conversions. These programs are used to convert Numbers from Binary to Decimal, Binary to Octal, Binary to Hexadecimal, Octal to Binary, Octal to Decimal, Octal to Hexadecimal, Decimal to Binary, Decimal to Octal, Decimal to Hexadecimal, Hexadecimal to Binary, Hexadecimal to Octal and Hexadecimal to Binary. With the help of these programs we will convert number from one number system to another number system.
Read more: Number systems
List of Number System Conversion Programs in C
- C program to convert number from Decimal to Binary
- C program to convert number from Decimal to Octal
- C program to convert number from Decimal to Hexadecimal
- C program to convert number from Binary to Decimal
- C program to convert number from Octal to Decimal
- C program to convert number from Hexadecimal to Decimal
- C program to convert a Binary number to an Octal number
- C program to convert a Binary number to a Hexadecimal number
- C program to convert an Octal number into a Binary number
- C program to convert a Hexadecimal number into a Binary number
- C program to convert a Decimal number to a Roman number
- C program to convert a Roman number to a corresponding Decimal number
- C program to convert a Decimal number to Binary using Recursion
- C program to convert a Binary number to Gray Code
- C program to convert a Binary number to Gray Code using Recursion