double test = 0.0;
.... some code
char qwe = ...
.. some code
test += qwe;
if (test >= 200 || test <= 300) {
test = 7.0;
}
// For some reason, test seems to equal 0?
Why does (test >= 200 || test <= 300)
== false?
It's very strange behaviour.
And when I print the output, it's 0?