#define INFINITY /*implementation defined*/
(since C99)If the implementation supports floating-point infinities, the macro INFINITY
expands to constant expression of type float which evaluates to positive or unsigned infinity.
If the implementation does not support floating-point infinities, the macro INFINITY
expands to a positive value that is guaranteed to overflow a float at compile time, and the use of this macro generates a compiler warning.
The style used to print an infinity is implementation defined.
[edit] ExampleShow style used to print an infinity and IEEE format.
#include <stdio.h> #include <math.h> #include <stdint.h> #include <inttypes.h> #include <string.h> int main(void) { double f = INFINITY; uint64_t fn; memcpy(&fn, &f, sizeof f); printf("INFINITY: %f %" PRIx64 "\n", f, fn); }
Possible output:
INFINITY: inf 7ff0000000000000[edit] References
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4