C Program to Implement e^x Function
This C Program finds the value of exponential function e^(x),given x and n #include #include int x; int n,u; int fact(int n) { if (n==1) return (1); else return(n*fact(n-1)); } int findex() { int...
This C Program finds the value of exponential function e^(x),given x and n #include #include int x; int n,u; int fact(int n) { if (n==1) return (1); else return(n*fact(n-1)); } int findex() { int...
Recent Comments