I'm now since a couple of weeks debugging a program and am now at the point where I don't know anymore what could be wrong (actually it compiles but does not do what I want)...
Anyway, if i want to write a=b*(c+d) and write the following code:
does the program what I want or does it see a=b*c+d?
I really hope it is the latter possibility, because that risks to solve my problem... thanks in advance either way
Anyway, if i want to write a=b*(c+d) and write the following code:
Code:
a=b; a*=c+d;
I really hope it is the latter possibility, because that risks to solve my problem... thanks in advance either way
Comment