Question : How do i code a compiler for sine? in c++
here the formula-- sin(x) = x - X^3/3! + x^5/5! - x^7/7! + x^9/9! ..... to the number of terms also input by the user.
supposing that the number of terms to which sin(x) has to be calculated is n then how do we write the above formula in our program to do so.