C Workshop
Fibonacci.h File Reference
#include <stdio.h>

Go to the source code of this file.

Typedefs

typedef unsigned long long int ull_t
 Shorthand for "unsigned long long int". More...
 

Functions

ull_t Fibonacci (size_t n)
 Returns the nth fibonacci number. More...
 

Typedef Documentation

◆ ull_t

typedef unsigned long long int ull_t

Shorthand for "unsigned long long int".

Function Documentation

◆ Fibonacci()

ull_t Fibonacci ( size_t  n)

Returns the nth fibonacci number.

Parameters
nThe index of the fibonacci number to return
Returns
The nth fibonacci number