Skip to content

Instantly share code, notes, and snippets.

View FranckRedery's full-sized avatar

Francesco Reda FranckRedery

View GitHub Profile
@SebastianWilke
SebastianWilke / pi.c
Last active October 18, 2020 23:52
functions to calculate sin, cos, exp and pi in c
// 3.1415926535897932384626433832795028841971693993751058209749445923
#include <stdio.h>
#include <stdint.h>
double pi_series_representation (int N)
{
double result = 0.0;
int8_t sign = 1;