Skip to content

Commit

Permalink
feat: Add wikipedia link
Browse files Browse the repository at this point in the history
  • Loading branch information
niranjank2022 authored Apr 8, 2023
1 parent ecffa96 commit a7b550b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion math/fibonacci.c
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
/**
* @file
* @brief Program to print the nth term of the Fibonacci series.
* @details
* @details
* Fibonacci series generally starts from 0 and 1. Every next term in
* the series is equal to the sum of the two preceding terms.
* For further info: https://en.wikipedia.org/wiki/Fibonacci_sequence
*/

#include <assert.h> /// for assert()
Expand Down

0 comments on commit a7b550b

Please sign in to comment.