It is a discussion that seems to have no end but that some of us see it clearly, that it depends on the strength with which the so-called "hierarchy of operations" is applied.
If you feel like spending time on it, then please reason out the answer about your position in the dilemma.
Code: Select all
v.f=-2.0
r.f=Sqr(Pow(v,2.0))
r2.f=Sqr(v*v)
r3.f=Pow(v,2.0/2.0); <- NOTICE that Sqr(X) is in fact X^(1/2)
debug r
debug r2
debug r3