work in progress
This commit is contained in:
8
math/sum/fib.c
Normal file
8
math/sum/fib.c
Normal file
@@ -0,0 +1,8 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int main() {
|
||||
int i, n;
|
||||
int t1 = 0, t2 = 1;
|
||||
int nextTerm = t1 + t2;
|
||||
printf("")
|
||||
}
|
||||
Reference in New Issue
Block a user