From 3cf128d6da667d00bb5bb659413ea55a98a02aff Mon Sep 17 00:00:00 2001 From: mjfernez Date: Tue, 12 Oct 2021 20:18:28 -0400 Subject: Added description. x86 solutions for some problems --- 01-Multiples-of-3-and-5/euler1.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to '01-Multiples-of-3-and-5/euler1.c') diff --git a/01-Multiples-of-3-and-5/euler1.c b/01-Multiples-of-3-and-5/euler1.c index d89956e..ff24a08 100644 --- a/01-Multiples-of-3-and-5/euler1.c +++ b/01-Multiples-of-3-and-5/euler1.c @@ -3,11 +3,11 @@ //Problem 1: multiples of 3 and 5 int main(){ int max = 1000; - int i; double sum; + int i, sum = 0; - for (i=0;i