Standard Math
suggest changeSyntax
- #include <math.h>
- double pow(double x, double y);
- float powf(float x, float y);
- long double powl(long double x, long double y);
Remarks
- To link with math library use
-lmwith gcc flags. - A portable program that needs to check for an error from a mathematical function should set
errnoto zero, and make the following callfeclearexcept(FE_ALL_EXCEPT);before calling a mathematical function. Upon return from the mathematical function, iferrnois nonzero, or the following call returns nonzerofetestexcept(FE_INVALID | FE_DIVBYZERO | FE_OVERFLOW | FE_UNDERFLOW);then an error occurred in the mathematical function. Read manpage of math_error for more information.
Found a mistake? Have a question or improvement idea?
Let me know.
Table Of Contents