Hello everyone!
I use VS 2008 and write a simple program:
#include <iostream>
#include <cmath>
using namespace std;
int main ()
{
double x = 5.0;
double result = lgamma(x);
cout << result;
return 0;
}
Then I get the error:
error C3861: “lgamma”: identifier not found
What should I do to fix the error?
It's not implemented in Visual Studio 2008.