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 = cosh(1); printf("%lf", d); } /* run: 1.543081 */
#include <stdio.h> #include <math.h> int main(void) { float f = coshf(-1); printf("%f", f); } /* run: 1.543081 */
#include <stdio.h> #include <math.h> int main(void) { long double ld = coshl(0.0); printf("%Lf", ld); } /* run: 1.000000 */