Introducing Radical.sh

Forget Code launches a powerful code generator for building API's

expm1 - Returns the natural log 'e' raised to the argument power in C


  
  #include <math.h>
  #include <stdio.h>

  int main(void)
  {
     printf("Value of e to the first: %f.", expm1f(1.0));
  }


Output:
Value of e to the first: 1.718282