how to generate pi in c

Alejandro Imass ait at p2ee.org
Fri Nov 5 18:02:31 UTC 2010


This is how I do it in perl
use constant PI => 4 * atan2(1, 1);

In C it owuld probably be (using math.h):

pi = 4.0*atan(1.0);

On Fri, Nov 5, 2010 at 1:15 PM, Remko Lodder <remko at elvandar.org> wrote:
>
> No, but a simple search reveals some information;
>
> http://einstein.drexel.edu/courses/Comp_Phys/General/C_basics/
>
> On Nov 5, 2010, at 5:40 PM, Arthur Bela wrote:
>
>> Does anyone has a "generate-pi.c" source code?
>>
>> Thanks.. :D :\
>>
>
> --
> /"\   Best regards,                        | remko at FreeBSD.org
> \ /   Remko Lodder                      |
> X    http://www.evilcoder.org/    | Quis custodiet ipsos custodes
> / \   ASCII Ribbon Campaign    | Against HTML Mail and News
>
>
>
>
> _______________________________________________
> freebsd-questions at freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "freebsd-questions-unsubscribe at freebsd.org"
>


More information about the freebsd-questions mailing list