C Program to find exponent Power Series
Posted by Samath
Last Updated: January 02, 2017
#include<stdio.h>
#define ACCURACY 0.0001
 
int main() {
   int n, count;
   float x, term, sum;
 
   printf("\nEnter 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;
}