{{keywords>wiki library source code example reference}} ===== sin ===== double sin(double); return the sinus ===== cpp Sourcecode Example ===== #include /* including standard library */ #include /* including math library */ using namespace std; int main (void) { double x; x = 42.0; //cout.setf(ios::fixed, ios::floatfield); cout.precision(8); cout << "sine of " << x << "° is " << sin(x*3.1415/80) << endl;; return 0; } ==== output ==== sine of 42° is 0.99692115