Skip to content

Instantly share code, notes, and snippets.

@MohammedRashad
Created November 15, 2016 14:42
Show Gist options
  • Save MohammedRashad/4ef8f81bf709e31d10bff5086cb89a69 to your computer and use it in GitHub Desktop.
Save MohammedRashad/4ef8f81bf709e31d10bff5086cb89a69 to your computer and use it in GitHub Desktop.
Calculate a number in Fibonacci Series by its index
uint32_t fibonacci(uint32_t n){
if (n == 0) return 0;
if (n == 1) return 1;
return fibonacci(n - 1) + fibonacci(n - 2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment