.......... are the program that are created on local computer when you visit the website
Answers
Answered by
6
Answer:
The sin() function returns the sine of an argument (angle in radians). It is defined in math.h header file. The return value of sin() lies between 1 and -1.
...
Example: C sin() function
#include <stdio.h>
#include <math.h>
int main()
{
double x;
Similar questions