Skip to content

Instantly share code, notes, and snippets.

@boxalljohn
Created July 15, 2013 00:39
Show Gist options
  • Save boxalljohn/5996782 to your computer and use it in GitHub Desktop.
Save boxalljohn/5996782 to your computer and use it in GitHub Desktop.
float circlearea (float radius)
{
float result = 0;
result = 3.141592654 * radius * radius;
return result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment