Mega Code Archive

 
Categories / C / Math
 

How to use cos

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