The approximation is only around 4.28*10^-101 off from pi.
https://www.wolframalpha.com/input?i=integral+from+-a+to+a+of+(integral+from+-a+to+a+of+e^-(x^2%2By^2)dy)dx
https://www.wolframalpha.com/input?i=(1-erf(e^e)^2)*pi
The approximation is only around 4.28*10^-101 off from pi.
https://www.wolframalpha.com/input?i=integral+from+-a+to+a+of+(integral+from+-a+to+a+of+e^-(x^2%2By^2)dy)dx
https://www.wolframalpha.com/input?i=(1-erf(e^e)^2)*pi
types in C are pretty weird
int *acan be read as*ais a intais a pointer tointint *a, bis read as*aandbareintais a pointer tointandbis aintbool getofmylawn(Lawn lawn)getoffmylawn(Lawn lawn)is aboolgetoffmylawnis a function that takes aLawnand returns aboolAnd then you have function pointers
bool (*foo(int a))(float b)(*foo(int a))(float b)is abool*foo(int a)is a function fromfloattoboolfoo(int a)is a function pointer fromfloattoboolfoois a function that takes aintand returns a function pointer fromfloattoboolreally weird in my opinion.