init
This commit is contained in:
10
Test/c05/ex03/main.c
Normal file
10
Test/c05/ex03/main.c
Normal file
@ -0,0 +1,10 @@
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
if (argc > 2)
|
||||
printf("%d", ft_recursive_power(atoi(argv[1]), atoi(argv[2])));
|
||||
}
|
||||
|
Reference in New Issue
Block a user