From 42911ccf67dd13293d332e75d6d7772c8ebb9fb8 Mon Sep 17 00:00:00 2001 From: pommicket Date: Tue, 15 Feb 2022 22:41:18 -0500 Subject: math.h --- 05/main.c | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to '05/main.c') diff --git a/05/main.c b/05/main.c index a77ccf2..5f57418 100644 --- a/05/main.c +++ b/05/main.c @@ -1,15 +1,9 @@ #define _STDLIB_DEBUG +#include #include -#include -#include -#include -#include -#include int main(int argc, char **argv) { - setlocale(LC_ALL, "C"); - struct lconv *c = localeconv(); - printf("%s\n",c->negative_sign); + printf("%.16g\n", cosh(10)); return 0; } -- cgit v1.2.3