Menu
   ❮   
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY CYBERSECURITY DATA SCIENCE
     ❯   

C Math cosh() Function

❮ Math Functions


Example

Return the hyperbolic cosine of different numbers:

printf("%f", cosh(7));
printf("%f", cosh(56));
printf("%f", cosh(2.45));
Try it Yourself »

Definition and Usage

The cosh() function returns the hyperbolic cosine of a number.

The hyperbolic cosine is equivalent to (exp(number) + exp(-number)) / 2.

The cosh() function is defined in the <math.h> header file.


Syntax

One of the following:

cosh(double number);

Parameter Values

Parameter Description
number Required. Specifies a number.

Technical Details

Returns: A double value representing the hyperbolic cosine of a number.

❮ Math Functions


Related Pages

C Functions Tutorial

C Math Functions Tutorial