C Sinh() - C Standard Library - Programiz

Tutorials Courses Python JavaScript TypeScript SQL HTML CSS C C++ Java R Ruby RUST Golang Kotlin Swift C# DSA

Become a certified C programmer.

ENROLL

Popular Tutorials

Data Types in C C if...else Statement C for Loop Arrays in C Programming Pointers in C Start Learning C

Popular Examples

Check odd/even number Find roots of a quadratic equation Print Pyramids and Patterns Check prime number Print the Fibonacci series Explore C Examples

Reference Materials

string.h math.h ctype.h View all Programiz Pro Logo

Created with over a decade of experience.

  • Learn
  • Practice
  • Compete
Learn Python Learn HTML Learn JavaScript Learn SQL Learn DSA Learn C Learn C++ Learn Java View all Courses on Programiz Pro Logo Python Basics Python Intermediate C++ Basics C++ Intermediate C++ OOP C Programming Java Basics Java Intermediate Java OOP View all Courses on Programiz Pro Logo Python Challenges JavaScript Challenges Java Challenges C++ Challenges C Challenges View all Challenges on Programiz Pro Logo Learn Practice Compete

Certification Courses

Created with over a decade of experience and thousands of feedback.

Learn Python Learn HTML Learn JavaScript Learn SQL Learn DSA View all Courses on Programiz Pro Logo Learn C Learn C++ Learn Java Python JavaScript TypeScript SQL HTML CSS C C++ Java More languages

Become a certified C programmer.

Try Programiz PRO!

Popular Tutorials

Data Types in C C if...else Statement C for Loop Arrays in C Programming Pointers in C Start Learning C All C Tutorials

Reference Materials

string.h math.h ctype.h View all Python JavaScript C C++ Java R Kotlin

Become a certified C programmer.

Try Programiz PRO!

Popular Examples

Check odd/even number Find roots of a quadratic equation Print Pyramids and Patterns Check prime number Print the Fibonacci series All C Examples

<math.h> Functions

  • acos()
  • acosh()
  • asin()
  • asinh()
  • atan()
  • atanh()
  • atan2()
  • cbrt()
  • ceil()
  • cos()
  • cosh()
  • exp()
  • fabs()
  • floor()
  • hypot()
  • log()
  • log10()
  • pow()
  • sin()
  • sinh()
  • sqrt()
  • tan()
  • tanh()

C Tutorials

  • C asinh()
  • C tanh()
  • C cosh()
  • C cos()
  • C atanh()
  • C asin()
C sinh()

C sinh() Prototype

double sinh( double arg );

The sinh() function takes a single argument and returns the value of type double.

[Mathematics] sinhx = sinh(x) [In C programming]

It is defined in <math.h> header file.

In order to find the sinh() of long double or float numbers, use the following prototype.

long double sinhl( long double arg ); float sinhf( float arg );

C sinh() range

The arguments passed to the function sinh() can be any number, either negative or positive.

Example: C sinh() function

#include <stdio.h> #include <math.h> #define PI 3.141592654 int main() { double angle = 2.50, result; result = sinh(angle); printf("Sine hyperbolic of %.2lf (in radians) = %.2lf", angle, result); return 0; }

Output

Sine hyperbolic of 2.50 (in radians) = 6.05 Share on: Did you find this article helpful?

Sorry about that.

How can we improve it? Feedback * Leave this field blank

Your builder path starts here. Builders don't just know how to code, they create solutions that matter.

Escape tutorial hell and ship real projects.

Try Programiz PRO
  • Real-World Projects
  • On-Demand Learning
  • AI Mentor
  • Builder Community

Related Library Functions

C Library Function

C acos()

C Library Function

C acosh()

C Library Function

C ceil()

C Library Function

C tanh()

Từ khóa » C Ch Sinh