Skip to content

Instantly share code, notes, and snippets.

@boxalljohn
Created July 15, 2013 04:35
Show Gist options
  • Select an option

  • Save boxalljohn/5997537 to your computer and use it in GitHub Desktop.

Select an option

Save boxalljohn/5997537 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