"Coding is just like talking to a unknown girl. Once you talked to her with guts, the next time you'll never afraid",Really? Yes , try it Now !!!
Everything here is for education and learning purpose only , individual holds rights on outer posts/links etc.
Team Cracking The Code
About Me
▼
Saturday, February 26, 2011
AP to implement Horner Rule
#include
double horner(double *coeffs, int s, double x) { int i; double res = 0.0;
for(i=s-1; i >= 0; i--) { res = res * x + coeffs[i]; } return res; }
No comments:
Post a Comment
Hi thanks , we will get back to you shortly !!!