chinmay.sahoo
New member
How would you use the functions sin(), pow(), sqrt()?
is the header file
sin(a) will returns the sine of a,
pow(a,b) will returns a the value a to the power b(a^b)
egow(3,2) will returns 9;
sqrt(b) returns the square root of b
eg: sqrt(4) returns 2;