asin()

Anonymous contributor's avatar
Anonymous contributor
Anonymous contributor's avatar
Anonymous contributor
Published Jun 18, 2021Updated Jul 20, 2023
Contribute to Docs

The asin() function returns the inverse sine of the argument in radians.

Syntax

asin(n)

Example 1

Use asin() to return the inverse sine of 0.0:

#include <iostream>
#include <cmath>
int main() {
double x = 0.0;
double result;
result = std::asin(x);
std::cout << result << " radians" << "\n";
// Output: 1.5708 radians
}

Codebyte Example

The following example is runnable and outputs the inverse sine of 0.32:

Code
Output
Loading...

All contributors

Looking to contribute?

Learn C++ on Codecademy