Contact: aviboots(AT)netvision.net.il
40,760 questions
53,134 answers
573 users
#include <stdio.h> #include <math.h> int main(void) { double d = acosh(10); printf("%lf", d); return 0; } /* run: 2.993223 */
#include <stdio.h> #include <math.h> int main(void) { float f = acoshf(1); printf("%f", f); return 0; } /* run: 0.000000 */
#include <stdio.h> #include <math.h> int main(void) { long double ld = acoshl(0.5); printf("%Lf", ld); return 0; } /* run: nan */