Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C Exercises: Find out the sum of an A.P. series

C For Loop: Exercise-49 with Solution

Write a c program to find out the sum of an A.P. series.

Pictorial Presentation:

Find out the sum of an A.P. series

Sample Solution:

C Code:

#include <stdio.h>
#include <math.h>

void main(){

    int n1,df,n2,i,ln;
    int s1=0;

     printf("\n\n  Find out the sum of A.P. series :\n ");
     printf("----------------------------------------\n");


    printf("Input  the starting number of the A.P. series: ");
    scanf("%d",&n1);

    printf("Input the number of items for  the A.P. series: ");
    scanf("%d",&n2);

    printf("Input  the common difference of A.P. series: ");
    scanf("%d",&df);

    s1 = ( n2 * ( 2 * n1 + ( n2 -1 ) * df ) )/ 2;
    ln = n1 + (n2-1) * df;
    printf("\nThe Sum of the  A.P. series are : \n");

    for(i=n1;i<=ln; i= i + df ){
         if (i != ln)
             printf("%d + ",i);
         else
             printf("%d = %d \n\n",i,s1);
    }

} 

Sample Output:

Find out the sum of A.P. series :                                                                           
 ----------------------------------------                                                                     
Input  the starting number of the A.P. series: 1                                                              
Input the number of items for  the A.P. series: 10                                                            
Input  the common difference of A.P. series: 4                                                                
                                                                                                              
The Sum of the  A.P. series are :                                                                             
1 + 5 + 9 + 13 + 17 + 21 + 25 + 29 + 33 + 37 = 190  

Flowchart:

Flowchart : Find Strong Numbers within a range of numbers

C Programming Code Editor:

Improve this sample solution and post your code through Disqus.

Previous: Write a C program to find Strong Numbers within a range of numbers.
Next: Write a program in C to convert a decimal number into octal without using an array.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



C Programming: Tips of the Day

Static variable inside of a function in C

The scope of variable is where the variable name can be seen. Here, x is visible only inside function foo().

The lifetime of a variable is the period over which it exists. If x were defined without the keyword static, the lifetime would be from the entry into foo() to the return from foo(); so it would be re-initialized to 5 on every call.

The keyword static acts to extend the lifetime of a variable to the lifetime of the programme; e.g. initialization occurs once and once only and then the variable retains its value - whatever it has come to be - over all future calls to foo().

Ref : https://bit.ly/3fOq7XP