Home / Programs / Program to convert a positive decimal number to Binary, Octal or Hexadecimal using recursion
Programming Example

Program to convert a positive decimal number to Binary, Octal or Hexadecimal using recursion

👁 1,515 Views
💻 Practical Program
📘 Step by Step Learning
Program to convert a positive decimal number to Binary, Octal or Hexadecimal using recursion

Program Code

#include<stdio.h>
void convert(int, int);
main()
{
int num;
printf("Enter a positive decimal number : ");
scanf("%d", &num);
convert(num, 2);
printf("\n");
convert(num, 8);
printf("\n");
convert(num, 16);
printf("\n");
}/*End of main()*/

void convert (int num, int base)
{
int rem = num%base;
if(num==0)
	return;
	
convert(num/base, base);

	if(rem < 10)
	printf("%d", rem);
	else
	printf("%c", rem-10+'A' );
}/*End of convert()*/

Output

Enter a positive decimal number : 6
110
6
6
Press any key to continue . . .

Explanation

Program to convert a positive decimal number to Binary, Octal or Hexadecimal using recursion

How to learn from this program

First read the algorithm, then study the program code line by line. After that, compare the code with the output and finally go through the explanation. This approach helps learners understand both the logic and the implementation properly.