如何将带有指数和 sin 函数的方程式转换为 C?

How to translate an equation with exponents and sin function to C?

怎么用C语言写呢?我试了很多东西,但似乎我无法理解 exp 和 sin 函数。

直接实施可以是:

double y = exp(pow(sin(x),3)) + pow(x,6) - 2*pow(x,4) - pow(x,3) - 1.0;