9 lines
138 B
C
9 lines
138 B
C
#define _STDLIB_DEBUG
|
|
#include <math.h>
|
|
#include <stdio.h>
|
|
|
|
int main(int argc, char **argv) {
|
|
printf("%.16g\n", cosh(10));
|
|
return 0;
|
|
}
|
|
|