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 represented in … Read 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 represented in … Read more

C Program to Add Two Numbers using Pointers

In this tutorial, we will write a program to find the sum of numbers using pointers in C program. Before that, you should have knowledge on the following topic in C: C Program to Add Two Numbers using Pointers The program takes the two numbers from the user and finds the sum of those numbers … Read 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 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

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