C Program to find exponent Power Series !!

 C Program to find exponent Power Series !!
 
#include<stdio.h>
#define ACCURACY 0.0001

int main() {
   int n, count;
   float x, term, sum;

   printf("\nEnter value of x :");
   scanf("%f", &x);

   n = term = sum = count = 1;

   while (n <= 100) {
      term = term * x / n;
      sum = sum + term;
      count = count + 1;

      if (term < ACCURACY)
         n = 999;
      else
         n = n + 1;
   }

   printf("\nTerms = %d Sum = %f", count, sum);
   return 0;
}

Comments

Popular posts from this blog

C Program to Display the ATM Transaction

Fortran

Java programming language