Skip to content

Commit 154845b

Browse files
committed
A function that prints the binary representation of a number
1 parent f1d72c9 commit 154845b

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed
+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
#include "main.h"
2+
3+
4+
/**
5+
* _pow - calculates (base ^ power)
6+
* @base: base of the exponent
7+
* @power: power of the exponent
8+
*
9+
* Return: value of (base ^ power)
10+
*/
11+
unsigned long int _pow(unsigned int base, unsigned int power)
12+
{
13+
unsigned long int num;
14+
unsigned int i;
15+
16+
num = 1;
17+
for (i = 1; i <= power; i++)
18+
num *= base;
19+
return (num);
20+
}
21+
22+
/**
23+
* print_binary - prints a number in binary notation
24+
* @n: number to print
25+
*
26+
* Return: void
27+
*/
28+
void print_binary(unsigned long int n)
29+
{
30+
unsigned long int divisor, check;
31+
char flag;
32+
33+
flag = 0;
34+
divisor = _pow(2, sizeof(unsigned long int) * 8 - 1);
35+
while (divisor != 0)
36+
{
37+
check = n & divisor;
38+
if (check == divisor)
39+
{
40+
flag = 1;
41+
_putchar('1');
42+
}
43+
else if (flag == 1 || divisor == 1)
44+
{
45+
_putchar('0');
46+
}
47+
divisor >>= 1;
48+
}
49+
}

0 commit comments

Comments
 (0)