Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tyhopp/c-fibonacci
Implementation of the Fibonacci sequence in C
https://github.com/tyhopp/c-fibonacci
Last synced: 30 days ago
JSON representation
Implementation of the Fibonacci sequence in C
- Host: GitHub
- URL: https://github.com/tyhopp/c-fibonacci
- Owner: tyhopp
- Created: 2023-01-03T13:44:40.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-03T13:45:01.000Z (about 2 years ago)
- Last Synced: 2024-11-07T00:43:55.172Z (3 months ago)
- Language: C
- Size: 0 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# c-fibonacci
Implementation of the [Fibonacci sequence](https://en.wikipedia.org/wiki/Fibonacci_number) in C with [GNU Make](https://www.gnu.org/software/make/). Experimenting with static variables for the first time.
## Usage
1. Clone the repo
2. `make`
3. `./main`This prints the Fibonacci sequence to stdout.