work in progress

This commit is contained in:
2025-12-18 09:23:54 +01:00
parent 7daa295db1
commit 2000b51159
2 changed files with 9 additions and 1 deletions

8
math/sum/fib.c Normal file
View File

@@ -0,0 +1,8 @@
#include <stdio.h>
int main() {
int i, n;
int t1 = 0, t2 = 1;
int nextTerm = t1 + t2;
printf("")
}