From 6587ca4f81cf65a314b3bb5f2980bba7ecd84734 Mon Sep 17 00:00:00 2001 From: Greg Gauthier Date: Sun, 19 Oct 2025 14:05:24 +0100 Subject: [PATCH] add a comment to the sieve --- src/SIEVE01.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/SIEVE01.c b/src/SIEVE01.c index f17c422..a491adf 100644 --- a/src/SIEVE01.c +++ b/src/SIEVE01.c @@ -3,6 +3,7 @@ #define LIMIT 10000 #define PRIMES 1000 +// Sieve of Eratosthenes int main() { int i,j,numbers[LIMIT];