Write a C program to find the sum of first 10 natural numbers.


program

#include <stdio.h>

#include <conio.h>

void main()

{

    int asum = 0;

    printf("enter a number: ");

    scanf("%d", &a);

    printf("the first 10 natural number are: ");

    for (int i = 0i <= ai++)

    {

        printf("%d \n"i);

        sum = sum + i;
    }

    printf("the sum of the first %d natural number is %d "asum);

    getch();
}

OUTPUT
The first 10 natural number are: 0 
1
2
3
4
5
6
7
8
9
10
the sum of the first 10 natural number is 55

Follow our page for regular updates.

0 Comments