From 0b13972f3620ef97b6326ca538f95550358f4846 Mon Sep 17 00:00:00 2001 From: PanSi21 Date: Sun, 5 Jan 2025 00:19:12 +0100 Subject: [PATCH] Aggiorna test.c --- test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.c b/test.c index e1561b8..096876a 100644 --- a/test.c +++ b/test.c @@ -1,7 +1,7 @@ #include uint64_t fibonacci( void ) { - const int n = 500000; + const int n = 250000; uint64_t a = 0, b = 1, c; for (int i = 2; i <= n; i++) {