question about function derivatives
- by davit-datuashvili
hi i have question for example i have some function
int sumefunction(//parameters here let say int x){
return something let say x*x+2*x+3 or does not matter
}
i am interesting how find derivative of this function ?if i have
int f(int x){
return sin(x);
}
after derivative it must return cos(x)
thanks