Answers for "how to use exponential in c"

C
0

exponentials in c

#include <math.h>

   double pow(double x, double y);
   float powf(float x, float y);
   long double powl(long double x, long double y);
Posted by: Guest on October-13-2021

Code answers related to "C"

Browse Popular Code Answers by Language