forked from rathoresrikant/HacktoberFestContribute
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create Solved issue rathoresrikant#457
- Loading branch information
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/* | ||
* C Program to Print Binary Equivalent of an Integer using Recursion | ||
*/ | ||
#include <stdio.h> | ||
|
||
int binary_conversion(int); | ||
|
||
int main() | ||
{ | ||
int num, bin; | ||
|
||
printf("Enter a decimal number: "); | ||
scanf("%d", &num); | ||
bin = binary_conversion(num); | ||
printf("The binary equivalent of %d is %d\n", num, bin); | ||
} | ||
|
||
int binary_conversion(int num) | ||
{ | ||
if (num == 0) | ||
{ | ||
return 0; | ||
} | ||
else | ||
{ | ||
return (num % 2) + 10 * binary_conversion(num / 2); | ||
} | ||
}} |