Mega Code Archive

 
Categories / C Tutorial / Math h
 

Lgamma

Item Value Header filemath.h Declarationfloat lgammaf(float arg);double lgamma(double arg);long double lgammal(long double arg); Functioncomputes the absolute value of the gamma and returns its natural logarithm. #include <math.h>   #include <stdio.h>   int main(void)   {     printf("%f", lgammaf (1.2));     return 0;   } -0.085374