C Codes
Beginners
C on Unix
Code Snippets
Data Structures
File Operations
Games Graphics
Gnu-Linux
Hardware
Mathematics
Miscellaneous
Small Programs
Sorting
C > Code Snippets sample source codes
Cosine example
Cosine example #include <stdio.h> #include <math.h> int main() { printf("The cosine of %f is %f.\n",0.5,cos(0.5)); printf("The cosine of %f is %f.\n",1.0,cos(1.0)); printf("The cosine of %f is %f.\n",-1.0,cos(-1.0)); return 0; }
Privacy Policy
|
Link to Us
|
Links