Skip to content

Commit 678d944

Browse files
committed
task 4
1 parent f752757 commit 678d944

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

0x08-recursion/4-pow_recursion.c

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
#include "main.h"
2+
3+
/**
4+
* _pow_recursion - Returns the value of x raised to the power of y.
5+
* @x: The number to be raised.
6+
* @y: The power.
7+
*
8+
* Return: The value of x raised to the power of y.
9+
*/
10+
int _pow_recursion(int x, int y)
11+
{
12+
int result = x;
13+
14+
if (y < 0)
15+
return (-1);
16+
17+
else if (y == 0)
18+
return (1);
19+
20+
result *= _pow_recursion(x, y - 1);
21+
22+
return (result);
23+
}

0 commit comments

Comments
 (0)