title | ms.custom | ms.date | ms.reviewer | ms.suite | ms.technology | ms.tgt_pltfrm | ms.topic | apiname | apilocation | apitype | f1_keywords | dev_langs | helpviewer_keywords | ms.assetid | caps.latest.revision | author | ms.author | manager | |||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
logb, logbf, logbl, _logb, _logbf | Microsoft Docs |
11/04/2016 |
|
article |
|
|
DLLExport |
|
|
|
780c4daa-6fe6-4fbc-9412-4c1ba1a1766f |
13 |
corob-msft |
corob |
ghogen |
Extracts the exponent value of a floating-point argument.
double logb(
double x
);
float logb(
float x
); // C++ only
long double logb(
long double x
); // C++ only
float logbf(
float x
);
long double logbl(
long double x
);
double _logb(
double x
);
float _logbf(
float x
);
x
A floating-point value.
logb
returns the unbiased exponent value of x
as a signed integer represented as a floating-point value.
The logb
functions extract the exponential value of the floating-point argument x
, as though x
were represented with infinite range. If the argument x
is denormalized, it is treated as if it were normalized.
Because C++ allows overloading, you can call overloads of logb
that take and return float
or long double
values. In a C program, logb
always takes and returns a double
.
Input | SEH exception | Matherr exception |
---|---|---|
± QNAN,IND | None | _DOMAIN |
± 0 | ZERODIVIDE | _SING |
Routine | Required header |
---|---|
_logb |
<float.h> |
logb , logbf , logbl , _logbf |
<math.h> |
For more compatibility information, see Compatibility.
All versions of the C run-time libraries.