Slip 23 - A) Write a C program to accept n elements of 1D array and then display sum of all elements of array.

Solution:


#include <stdio.h>

int main()
{
    int arr[10];
    int sum,i;
    printf("\nEnter elements : \n");
    for(i=0; i<10; i++)
    {
        printf("Enter arr[%d] : ",i);
        scanf("%d",&arr[i]);
    }
         sum=0;
    for(i=0; i<10; i++)
    {
        sum=sum+arr[i];
    }
     
    printf("\nSum of array is     : %d"  ,sum);
    return 0;
}

Post a Comment

0 Comments