#include <stdio.h>
int main()
{
    int num, i, sum = 0;
   
    printf("Enter an integer: ");
    scanf("%d",&num);

   
    i = 1;
   

    while ( i <=num )
    {
        sum = sum + i;
        i++;
    }

    printf(" \n The result is : %d", sum);
    return 0;
}




OUTPUT :

Enter an integer : 5
The result is : 15


For Other Programs Visit The WebSite:-   https://www.techapurba.com/

Follow Me On Social Media :-

For tech related videos visit my other website :- https://apurbatechinfo.blogspot.com/