C Programming Tips & Tricks





Español Français 中文 Deutsch Portuguese Japanese nederlands
   
 
Code Snippets
 List All
 Arrays
 Calculators
 Datatypes
 Date & Time
 File Manipulation
 Math Functions
 Multimedia
 Others
 




Calculate Cosine Value - C

Snippets  C  Calculate Cosine Value
Snippet On
Cosine Value




Code
  
Rate this page :
  [ 0 votes]


#include <math.h>
#include <stdio.h>
int main()
{
printf(<q>The cosine of %f is %f.\n</q>,0.5,cos(0.5));
printf(<q>The cosine of %f is %f.\n</q>,1.0,cos(1.0));
printf(<q>The cosine of %f is %f.\n</q>,-1.0,cos(-1.0));
return 0;
}
}

Output:
=======
The cosine of 0.5
1




Other Links

web hosting