--- In [email protected], "sphilippe12" <[EMAIL PROTECTED]> wrote: > > Hello, > > I would like to use sinus and cosinus functions to my project, but > sin() and cos() are not recognized. I tried to include math.h with no > success. Could someone help me ? > > Thanks. > > Sébastien >
Hi, math.h is the header file of mathematical functions. So you have to insert "-lm" into the compilation line. For example : cc ..... -lm
