Known Slugs
Learn how some C functions that make our program slower.
We'll cover the following...
Slow math functions
There are some C functions that are known to be slow such as the pow
and sqrt
functions, and the trigonometric functions (e.g., sin
, cos
, tan
, etc.). These can be accessed by ...