In this tutorial, we will discuss a concept of C program to find the sum of natural numbers using loops
In this article, we are going to learn how to find the sum of natural numbers using loops in the C programming language
Program 1
This program takes input from the user and stores in variable num. Then, the for loop is used to calculate the sum of natural numbers up to the given numbers.
#include <stdio.h> #include <stdlib.h> int main() { int num,i,sum=0; printf("Enter a positive integer: "); scanf("%d",&num); for(i=1; i<=num; i++){ sum+=i; //sum=sum+i } printf("Sum of numbers are: %d",sum); getch(); return 0; }
When the above code is executed, it produces the following results
Enter a positive integer: 100 Sum of numbers are: 5050
Program 2
This program takes input from the user and stores in variable num. Then the while loop is used to calculate the sum of natural numbers upto the given number.
#include <stdio.h> #include <stdlib.h> int main() { int num,i,sum=0; printf("Enter a positive integer: "); scanf("%d",&num); i=1; while(i<=num){ sum+=i; //sum=sum+i i++; } printf("Sum of numbers are: %d",sum); getch(); return 0; }
When the above code is executed, it produces the following results
Enter a positive integer: 100 Sum of numbers are: 5050
Program 3
This program takes input from the user and stores in variable num. Then the do-while loop is used to calculate the sum upto the given number.
#include <stdio.h> #include <stdlib.h> int main() { int num,i,sum=0;//variable declaration printf("Enter a positive integer: "); scanf("%d",&num); //get input from user i=1; do{ sum+=i; //sum=sum+i i++; } while(i<=num); printf("Sum of numbers are: %d",sum); getch(); return 0; }
When the above code is executed, it produces the following results
Enter a positive integer: 100 Sum of numbers are: 5050
Method:
Similar post
Java program to find the sum of natural numbers using loops
Python program to Calculate the sum of natural numbers using loops
C++ program to calculate the sum of natural numbers using loops
Suggested for you
C# inverted full pyramid star pattern In this article, we will discuss the concept of…
C# Full Pyramid star pattern program In this article, we will discuss the concept of…
Program to count vowels, consonants, words, characters and space in Java In this article, we…
How to print multiplication table using Array in C++ language In this post, we will…
C Program to multiplication table using Array In this tutorial , we will discuss about…
Java program to check odd or even using recursion In this tutorial, we discuss a…