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 = atanh(0.9); printf("%lf", d); } /* run: 1.472219 */
#include <stdio.h> #include <math.h> int main(void) { float f = atanhf(-0.9); printf("%f", f); } /* run: -1.472219 */
#include <stdio.h> #include <math.h> int main(void) { long double ld = atanhl(0.5); printf("%Lf", ld); } /* run: 0.549306 */