7 lines
122 B
C
7 lines
122 B
C
#include <stdio.h>
|
|
#include "include/math.h"
|
|
|
|
int main() {
|
|
printf("acosh(%f): %f\n", 5.0, acosh(5.0));
|
|
return 0;
|
|
} |