C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
C++ Math ilogb()The function returns the exponent part of a given number i.e integral part of logx. ilogb() function is equivalent to (int)logb() Syntaxint ilogb(float x); int ilogb(double x); int ilogb(long double x); int ilogb(integral x); Parameterx: It is the value whose exponent is to be calculated. Return value
ExampleLet's see the simple example #include <iostream> #include<math.h> #include<float.h> using namespace std; int main() { int x=4; std::cout << "Value of x is : " <<x<< std::endl; cout<<"Exponent value of x is : "<<ilogb(x); return 0; } Output: Value of x is : 4 Exponent value of x is : 2
Next TopicC++ Math Functions
|