Toggle navigation
Home
Latest pastes
FAQ
Random
BitBin is shutting down!
Register
Login
my_power_rec.c
SUBMITTED BY:
Guest
DATE:
Nov. 29, 2013, 6:40 p.m.
FORMAT:
Text only
SIZE:
274 Bytes
Raw
Download
Tweet
HITS:
916
Go to comments
Report
int my_power_rec(int nb, int power)
{
if (power == 1)
return (nb);
if (power < 0)
return (0);
if (power == 0)
{
nb = 1;
return (nb);
}
if (power > 1)
return (nb * my_power_rec(nb, power - 1));
}
Please enable JavaScript to view the
comments powered by Disqus.
comments powered by
Disqus