Write a program that print sine function for an input x between (0, 1)
Answers
Answered by
1
Answer:
The C sin Function is a C Math Library Function, used to calculate the Trigonometry Sine value for the specified expression. The syntax of the sin in C Programming is
double sin(double number);
The SIN function in C will return the value between -1 and 1. Before we get into the syntax of a SIN function in C, Let us see the mathematical formula behind this Trigonometry Sine function:
Answered by
0
Explanation:
Python Program
==============
import math
x = int( input("Enter the value of x") )
print (math. sin(x))
Similar questions