Perhaps not the best place to post this, but:
pow_ii.c has the following odd line (22):
return x == 0 ? 1 / x : 0;
which I changed to:
return x != 0 ? 1 / x : 0;
even although this does not appear to be a best solution either.
J.
Users browsing this forum: No registered users and 1 guest