C++ acos()
Published Jun 18, 2021Updated Jul 20, 2023
Contribute to Docs
The acos() function returns the inverse cosine of the argument in radians.
Syntax
acos(n)
Example 1
Use acos() to return the inverse cosine of 0.0:
#include <iostream>#include <cmath>int main() {double x = 0.0;double result;result = std::acos(x);std::cout << result << " radians" << "\n";// Output: 1.5708 radians}
Codebyte Example
The following example is runnable and outputs the inverse cosine of -0.5:
Contribute to Docs
- Learn more about how to get involved.
- Edit this page on GitHub to fix an error or make an improvement.
- Submit feedback to let us know how we can improve Docs.
Learn C++ on Codecademy
- Looking for an introduction to the theory behind programming? Master Python while learning data structures, algorithms, and more!
- Includes 6 Courses
- With Professional Certification
- Beginner Friendly.75 hours
- Learn C++ — a versatile programming language that’s important for developing software, games, databases, and more.
- Beginner Friendly.11 hours