Closed sgmarz closed 5 years ago
int fib(int n) { if((n==0)) { return 0; } else if((n==1)) { return 1; } else { return (fib((n-1));+fib((n-2));); } }
Notice the semicolon after the recursive fib calls.
Notice the semicolon after the recursive fib calls.