Saturday, 24 December 2011

sin

#include<stdio.h>
#include<math.h>
 
main()
{
double result, x = .75;
 
result = sin(x);
 
printf("The sin(%lf) = %lf\n", x, result);
 
return 0;
}

No comments:

Post a Comment