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

Go to the source code of this file.

Functions

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

Function Documentation

◆ RecursiveFib()

void RecursiveFib ( int number)

Prints the return value of the called function RecFib.

Parameters
number

Definition at line 25 of file recursiveFib.c.

26{
27 printf("%d\n", RecFib(number));
28}
int RecFib(int n)
RecFib is a function wihich can calculate the fibonacci number by calling it self n times.

References RecFib().

Referenced by FunctionCall().

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