Mega Code Archive

 
Categories / C / Code Snippets
 

How to use acos

#include <math.h> #include <stdio.h> int main(void) { double val = -4.0; do { printf("Arc cosine of %f is %f.\n", val, acos(val)); val += 0.1; } while(val<=2.0); return 0; }