Mega Code Archive
Computes the absolute value of the gamma and returns its natural logarithm
//Declaration: float lgammaf(float arg);
double lgamma(double arg);
long double lgammal(long double arg);
#include
#include
int main(void)
{
printf("%f", lgammaf (4.8));
return 0;
}