C_Algorithms 2.0.0
Documentation
Loading...
Searching...
No Matches
Functions
dynamicFib.h File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

void DynamicFib (int number)
 Prints the return value of the called function RecFib.
 

Function Documentation

◆ DynamicFib()

void DynamicFib ( int number)

Prints the return value of the called function RecFib.

Parameters
number

Definition at line 31 of file dynamicFib.c.

32{
33 printf("%ld\n", DynFib(number));
34}
long DynFib(int n)
DynFib is a function that is calculating the fibonacci number dynamic. It's a lot faster as the recur...
Definition dynamicFib.c:12

References DynFib().

Referenced by FunctionCall().

Here is the call graph for this function:
Here is the caller graph for this function: