Input ‘N’ numbers into array and display sum in C program
/*input N and add*/ #include<stdio.h> main() { int n, sum = 0, i, array[100]; printf("Enter the number of integers you want to add="); scanf("%d", &n); printf("\n\nEnter %d integers \n\n", n); …
Input ‘N’ numbers into array and display sum in C program Read More