LAST UPDATED ON: SEPTEMBER 17, 2024
C Program to find Sum of N input Numbers using Array
Below is a program to find and print the sum of n numbers using arrays.
#include<stdio.h>
int main()
{
printf("\n\n\t\tStudytonight - Best place to learn\n\n\n");
int n, sum = 0, c, array[100];
printf("Enter the number of integers you want to add: ");
scanf("%d", &n);
printf("\n\nEnter %d integers \n\n", n);
for(c = 0; c < n; c++)
{
scanf("%d", &array[c]);
sum += array[c]; // same as sum = sum + array[c]
}
printf("\n\nSum = %d\n\n", sum);
printf("\n\n\t\t\tCoding is Fun !\n\n\n");
return 0;
}
Output: