Tag

#c conversion programs

12 posts

C Program to Convert Hexadecimal to Octal

In this tutorial, we will write a program to convert hexadecimal to octal in C. Before that, you must have knowledge of the following topics in C. Hexadecimal number The hexadecimal number is represented with a base of 16. It has digits from 0 to 15 to represent, However after 9 the values are repre

October 19, 2021Read more →

C Program to Convert Octal to Hexadecimal

In this tutorial, we will write a program to convert octal to hexadecimal in C. Before that, you must have knowledge of the following topics in C. Hexadecimal number The hexadecimal number is represented with a base of 16. It has digits from 0 to 15 to represent, However after 9 the values are repre

October 19, 2021Read more →

C Program to Convert Binary to Hexadecimal

In this tutorial, we will write a C Program to Convert a Binary Number to Hexadecimal Number. Before that, you must have knowledge of the following topics in C. Binary number The binary numbers are based on 0 and 1, so it is a base 2 number. They are the combination of 0 and 1. … Read more

October 18, 2021Read more →

C Program to Convert Hexadecimal to Binary

In this tutorial, we will write a C Program to Convert a Hexadecimal Number to Binary Number. Before that, you must have knowledge of the following topics in C. Binary number The binary numbers are based on 0 and 1, so it is a base 2 number. They are the combination of 0 and 1. … Read more

October 18, 2021Read more →

C Program to Convert Decimal to Hexadecimal

This is a C Program to Convert a Decimal Number to its Hexadecimal Equivalent. Before that, you must have knowledge of the following topics in C. Hexadecimal number The hexadecimal number is represented with a base of 16. It has digits from 0 to 15 to represent, However after 9 the values are repres

October 18, 2021Read more →

C Program to convert Hexadecimal to Decimal

This is a C Program to Convert a Hexadecimal Number to its decimal Equivalent. Before that, you must have knowledge of the following topics in C. Hexadecimal number The hexadecimal number is represented with a base of 16. It has digits from 0 to 15 to represent, However after 9 the values are repres

October 18, 2021Read more →

C Program to Convert Octal to Decimal

In this tutorial, we will write a program to convert octal to decimal in C using whille loop. Before that, you must have knowledge of the following topics in C. Octal number The octal numbers are the numbers with base 8 and use the digits 0 to 7. Example: 8 in decimal is represented as … Read

September 21, 2021Read more →

C Program to Convert Binary to Octal

In this tutorial, we will write a C program to convert a binary number into octal using a while loop. Before that, you must have knowledge of the following topics in C. Binary number The binary numbers are based on 0 and 1, so it is a base 2 number. They are the combination of … Read more

September 20, 2021Read more →

C Program to Convert Octal to Binary

In this tutorial, we will write a C program to convert an octal number into binary using a while loop. Before that, you must have knowledge of the following topics in C. Binary number The binary numbers are based on 0 and 1, so it is a base 2 number. They are the combination of … Read more

September 20, 2021Read more →