Skip to content

Instantly share code, notes, and snippets.

@zodmaner

zodmaner/fib.c Secret

Last active December 21, 2015 14:29
Show Gist options
  • Save zodmaner/079c72fc0068dd625ede to your computer and use it in GitHub Desktop.
Save zodmaner/079c72fc0068dd625ede to your computer and use it in GitHub Desktop.
a toy fib c code for my blog
unsigned int fib(int n)
{
if (n < 2) {
return n;
} else {
return (fib(n - 1) + fib(n - 2));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment