C_Algorithms 2.0.0
Documentation
|
Go to the source code of this file.
Functions | |
int | RecFib (int n) |
RecFib is a function wihich can calculate the fibonacci number by calling it self n times. | |
void | RecursiveFib (int number) |
Prints the return value of the called function RecFib. | |
int RecFib | ( | int | n | ) |
RecFib is a function wihich can calculate the fibonacci number by calling it self n times.
n | Input as a sting |
Definition at line 13 of file recursiveFib.c.
References RecFib().
Referenced by RecFib(), and RecursiveFib().
void RecursiveFib | ( | int | number | ) |
Prints the return value of the called function RecFib.
number |
Definition at line 25 of file recursiveFib.c.
References RecFib().
Referenced by FunctionCall().