File tree 1 file changed +49
-0
lines changed
1 file changed +49
-0
lines changed Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments