Search:

Type: Posts; User: abhishekcoder

Search: Search took 0.01 seconds.

  1. Yes.

    Yes.
  2. Thanks everyone. @Stevan - actually the first...

    Thanks everyone. @Stevan - actually the first term of my series is 1 which is not calculated while coding, so I am writing sum as 1 initially.
  3. Thank youu so much guys! Couldn't spot the...

    Thank youu so much guys! Couldn't spot the obvious :)
  4. It is not needed, is it? Everythime the next...

    It is not needed, is it? Everythime the next factorial is computed the variable fact alreaddy has the value of factorial of the earlier number. I am still getting the same problem, my program, even...
  5. Error while calculating sum of n terms of a exponential series to n terms:

    Following is my program for calculating the sum of exponential series upto n terms:

    e = 1/0! + 1/1! + 1/2! + 1/3! + 1/4! + 1/5!+....1/n!



    #include<stdio.h>
    int main()
    {
    int n,i,p=1;
Results 1 to 5 of 5