Home » C++ programming language

sin() function with example in C++

C++ sin() function: Here, we are going to learn about the sin() function with example of cmath header in C++ programming language?
Submitted by IncludeHelp, on April 27, 2019

C++ sin() function

sin() function is a library function of cmath header, it is used to find the sine of the given number (angle), it accepts a number (x) and returns the sine of angle x radians.

Syntax of sin() function:

    sin(x);

Parameter(s): x – is the value of an angle in radians whose sine to be calculated.

Return value: double – it returns double type value that is the sine of given angle x radians.

Example:

    Input:
    float x = 2.45;
    
    Function call:
    sin(x);    
    
    Output:
    0.637765

C++ code to demonstrate the example of sin() function

// C++ code to demonstrate the example of 
// sin() function

#include <iostream>
#include <cmath>
using namespace std;

// main() section
int main()
{
    float x;
    
    x = -10.23;
    cout<<"sin("<<x<<"): "<<sin(x)<<endl;

    x = 0;
    cout<<"sin("<<x<<"): "<<sin(x)<<endl;    

    x = 2.45;
    cout<<"sin("<<x<<"): "<<sin(x)<<endl;    
    
    return 0;
}

Output

sin(-10.23): 0.720984
sin(0): 0
sin(2.45): 0.637765

Reference: C++ sin() function

ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT


Top MCQs

Comments and Discussions!




Languages: » C » C++ » C++ STL » Java » Data Structure » C#.Net » Android » Kotlin » SQL
Web Technologies: » PHP » Python » JavaScript » CSS » Ajax » Node.js » Web programming/HTML
Solved programs: » C » C++ » DS » Java » C#
Aptitude que. & ans.: » C » C++ » Java » DBMS
Interview que. & ans.: » C » Embedded C » Java » SEO » HR
CS Subjects: » CS Basics » O.S. » Networks » DBMS » Embedded Systems » Cloud Computing
» Machine learning » CS Organizations » Linux » DOS
More: » Articles » Puzzles » News/Updates

© https://www.includehelp.com some rights reserved.