Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Watcom C/C++ v10.0 : C library - <b>synopsis:</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
Synopsis:
    #include <math.h>
    double cos( double x );

Description:
    The cos function computes the cosine of x (measured in radians).  A
    large magnitude argument may yield a result with little or no
    significance.

Returns:
    The cos function returns the cosine value.

See Also:
    acos, sin, tan

Example:
    #include <math.h>

    void main()
      {
        double value;
        value = cos( 3.1415278 );
      }

Classification:
    ANSI

Systems:
    All

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson