From 754bbf7a25a8dda49b5d08ef0d0443bbf5af0e36 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sun, 7 Apr 2024 13:41:34 -0500 Subject: new repository --- devdocs/c/numeric.html | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 devdocs/c/numeric.html (limited to 'devdocs/c/numeric.html') diff --git a/devdocs/c/numeric.html b/devdocs/c/numeric.html new file mode 100644 index 00000000..82bd12e9 --- /dev/null +++ b/devdocs/c/numeric.html @@ -0,0 +1,31 @@ +

Numerics

The C numerics library includes common mathematical functions and types, as well as support for random number generation.

+

Common mathematical functions +

The header math.h provides standard C library mathematical functions such as fabs, sqrt, and sin.

+

Floating-point environment +

The header fenv.h defines flags and functions related to exceptional floating-point state, such as overflow and division by zero.

+

Pseudo-random number generation +

The header stdlib.h also includes C-style random number generation via srand and rand.

+

Complex number arithmetic +

The header complex.h provides types and functions about complex numbers.

+

Type-generic math +

The header tgmath.h provides some macros for a function which names XXX:

+

See also

+
C++ documentation for Numerics library
+

+ © cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
+ https://en.cppreference.com/w/c/numeric +

+
-- cgit v1.2.3