![](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhgSmHj9NX2iqPQErGGSvFI-fCacXFkrkcu8eTfC-ikrvvDicxaQdHTv_9vR4pfNSoGUeTIrzIBCfCxDrknSCS5xmfg3G8V4OMMsQ52Z4xehVqM_Ck09Q7Nx-Cb5-6PMG8RckfaO7gOKHEm/s200/Youtube+Template.png)
C++ has a rich set of mathematical operations, which can be performed on various numbers. Following table lists down some useful built-in mathematical functions available in C++.
Sr.No | Function & Purpose |
---|---|
1 |
double cos(double);
This function takes an angle (as a double) and returns the cosine.
|
2 |
double sin(double);
This function takes an angle (as a double) and returns the sine.
|
3 |
double tan(double);
This function takes an angle (as a double) and returns the tangent.
|
4 |
double log(double);
This function takes a number and returns the natural log of that number.
|
5 |
double pow(double, double);
The first is a number you wish to raise and the second is the power you wish to raise it t
|
6 |
double hypot(double, double);
If you pass this function the length of two sides of a right triangle, it will return you the length of the hypotenuse.
|
7 |
double sqrt(double);
You pass this function a number and it gives you the square root.
|
8 |
int abs(int);
This function returns the absolute value of an integer that is passed to it.
|
9 |
double fabs(double);
This function returns the absolute value of any decimal number passed to it.
|
10 |
double floor(double);
Finds the integer which is less than or equal to the argument passed to it.
|
How to use Math Functions in C++ Tamil - Part 6
Reviewed by Viththiyakaran
on
8:30 PM
Rating:
![How to use Math Functions in C++ Tamil - Part 6](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhgSmHj9NX2iqPQErGGSvFI-fCacXFkrkcu8eTfC-ikrvvDicxaQdHTv_9vR4pfNSoGUeTIrzIBCfCxDrknSCS5xmfg3G8V4OMMsQ52Z4xehVqM_Ck09Q7Nx-Cb5-6PMG8RckfaO7gOKHEm/s72-c/Youtube+Template.png)
No comments: