Calculate Addition of All Elements in Array

#Calculate Addition of All Elements in Array

1 posts

Write C Program to Calculate Addition of All Elements in Array

Program : Addition of All Elements of the Array #include <stdio.h> int main() { int i, arr[50], sum, num; printf("\nEnter no of elements :"); scanf("%d", &num); //R... Read Mores
Prathmesh Yelne

20-Dec-2021 20:11:22

27 Views C Programming 3 years ago