...
This noncompliant code example determines the hyperbolic cosine sine of x
:
Code Block | ||||
---|---|---|---|---|
| ||||
#include <math.h> void func(double x) { double result; result = sinh(x); } |
...
...
This noncompliant code example determines the hyperbolic cosine sine of x
:
Code Block | ||||
---|---|---|---|---|
| ||||
#include <math.h> void func(double x) { double result; result = sinh(x); } |
...