From 3af656de22434af814caa702e4e34fe90ffc0c60 Mon Sep 17 00:00:00 2001 From: pants Date: Thu, 14 Aug 2025 00:09:44 -0600 Subject: [PATCH] ye laurie --- c/float.c | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 c/float.c diff --git a/c/float.c b/c/float.c new file mode 100644 index 0000000..f02a177 --- /dev/null +++ b/c/float.c @@ -0,0 +1,11 @@ +#include +#include + +// this showcases floating point innaccuracy due to needing to represent them in binary + +void main() { + float ye = 6.28; + printf("%.4f\n", ye); + printf("%.8f\n", ye); + printf("%.12f\n", ye); +}