Is there any difference between these:
float foo1 = (int)(bar / 3.0);
float foo2 = floor(bar / 3.0);
As I understand both cases have the same result. Is there any difference in the compiled code?
Note: updated fabs()
to floor()
as that was the real question