Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
uninitialized variables in C can do weird things!
if I comment the first one
is a big clue to thatNvm, I forgot to set the sum var to 0, thus being in structure it always kept the previous value I guess.
My C-fu is not so good, but I would look into that if that's what's happening.
I just noticed that this time it is not a function it is a struct.
Maybe this is causing the problem. I have a var named sum, that is inside a function and that function is
inside a strutc (as designed by the creator). I am returning the sum variable.
You're probably using a global var, don't do that. If I understood what you said, your code is returning the wrong result right?
This comment is hidden because it contains spoiler information about the solution