Hey guys! I was assigned this program which was pretty simple and didn't take long to code, yet I can't get it to run. Nothing prints and I think it's because it goes into an endless loop. Just looking for a fix on this.
Assignment:
Write and test a recursive function that returns the value of the following recursive definition:
f(x) = 0 if x <= 0 f(x- 1) + 2 otherwise
My program:
#include <stdio.h>
int main(void)
{
int n, x;
int factorial(int n) {
if (x <= 0) {
printf("x equals: ");
return 1;
} else {
return n * factorial(n - 1); //error here
}
f(x) = f(x - 1) + 2;
}
return 0;
}
{and}have four (4) additional spaces in front. If you indent your code correctly, you may be able to see some of the problems you've created. – S.Lott Jun 2 '11 at 1:50