Skip to main content

C Program to find the sum of natural numbers using while loop

Programming Languages

Welcome to coding world

C Program to find the sum of natural numbers using while loop


#include <stdio.h>

int main()

{

    int n, count, sum = 0;

 

    printf("Enter the value of n(positive integer): ");

    scanf("%d",&n);

 

    /* When you use while loop, you have to initialize the

     * loop counter variable before the loop and increment

     * or decrement it inside the body of loop like we did

     * for the variable "count"

     */

    count=1;

    while(count <= n){

                sum = sum + count;

                count++;

    }

 

    printf("Sum of first %d natural numbers is: %d",n, sum);

 

    return 0;

}

Output:

 Enter the value of n(positive integer): 7

Sum of first 7 natural numbers is: 28

Popular posts from this blog

Ayeza Khan Bridal collection 2021

Pakistan Showbiz Ayeza khan celebrate 10M on Instagram Ayeza Khan & Danish Taimoor love story  

Key Ecommerce Leader (KEL) Pakistan Awards Event 2024 | Pakistan KEL Awards Winner Tayyub Hussnain (Norwich Street Wear) | 2024 Alibaba.com Pakistan Key E-commerce Leader Winner

 Key Ecommerce Leader (KEL) Pakistan Awards Event 2024 On August 20, 2024, Alibaba.com organized an exceptional event at the Pearl Continental Hotel in Lahore. Participants gained insights into global business strategies and discovered the vast opportunities available through Alibaba.com. In an exciting development, Alibaba.com announced the launch of Trade Assurance in Pakistan by the end of August 2024, representing a significant advancement for the Pakistani market. Featured speakers included: 🌟 Andrew Zheng - Vice President, Alibaba.com 🌟 Vianne Wang - Head of Global Supply Chain, Alibaba.com 🌟 Winni Chen - Merchant Development Manager The event was a resounding success, enhancing confidence in the future of eCommerce in Pakistan! 💪🎉 During the event, six successful business owners were invited to share their stories and insights. Mr.Tayyub Hussnain stood out with his inspiring success story and impressive leadership skills, captivating the audience and judges alike. Ho...

Good Morning Wishes