MeshWorld India LogoMeshWorld.
ProgramC1 min read

Sum of Series Between Two Numbers Using For Loop in C

Listen to ArticleAI Speech
~1 min read narration
100%
Sum of Series Between Two Numbers Using For Loop in C

A program to find sum of series between two integers numbers illustrating for loop in C - language

Working example

/**
 * Sum Of Series Between Start To End Values
 * Using For Loop
 */
#include <stdio.h>
int main()
{
    int i, start, end, result = 0;
    printf(" Enter start & end number: ");
    scanf("%d %d", &start, &end);
    printf("\n Start value : %d", start);
    printf("\n End value : %d", end);

    for (i = start; i <= end; i += 1)
    {
        //printf("\n I : %d", i);
        //printf("\n Result B4 adding : %d", result);
        result = result + i;
        //printf("\n Result : %d", result);
    }
    printf("\n Sum of series : %d", result);
    printf("\n");
    return 0;
}

Output

Enter start & end number: 12 24

Start value : 12
End value : 24
Sum of series : 234
Reader Quality Feedback

Did this technical guide help solve your problem?

Suggest Errata ($0)
Vishnu
Primary Author

Vishnu

Founder & Principal Architect at MeshWorld. Senior engineer and instructor specializing in AI agent systems, scalable web architecture, and modern development workflows.

Explore Author Archive
Compute Fuel & Open Testbed
100% Independent & Verified

Fuel High-Density, Zero-Fluff Engineering Deep-Dives

Every guide on MeshWorld is validated on physical Linux nodes and reproducible testbeds. If this article saved you hours of debugging or unblocked production, consider funding our next cluster run.

Weekly Dispatch

Join MeshWorld Dispatch

Get practical tutorials, system blueprints, and curated AI engineering notes straight to your inbox. No fluff, zero spam.

Zero spam. 1-click unsubscribe anytime.Prefer RSS?
Curated Continuations

Up Next in This Domain.

Browse Full Archive