Skip to content

Instantly share code, notes, and snippets.

@kylelk
Created August 30, 2013 13:50
Show Gist options
  • Select an option

  • Save kylelk/6390050 to your computer and use it in GitHub Desktop.

Select an option

Save kylelk/6390050 to your computer and use it in GitHub Desktop.
natural logarithm in C
#include <stdio.h>
#include <math.h>
double fun(double x)
{
return log(x); // base-e logarithm! }
}
// usage
int main()
{
double y = fun(1000);
printf("%f", y);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment