We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Hello all, I am looking for an exp function that can replicate the exponent function x^y found in excell. Can any body point me in the right direction. Thank you all
The C function you are looking for is:
pow(x,y);
Note that pow() is a floating-point function http://www.keil.com/support/man/docs/c51/c51_pow.htm Generally, floating-point is not a good idea on an 8051...