Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: It turns out that cosine and sine are different things.

...

This noncompliant code example determines the hyperbolic cosine sine of x:

Code Block
bgColor#FFcccc
langc
#include <math.h>
 
void func(double x) {
  double result;
  result = sinh(x);
}

...