C Workshop
|
#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 unsigned long long int ull_t |
Shorthand for "unsigned long long int".
ull_t Fibonacci | ( | size_t | n | ) |
Returns the nth fibonacci number.
n | The index of the fibonacci number to return |