how to calculate sum of the elements in an array Using c Language Get link Facebook X Pinterest Email Other Apps January 06, 2022 int sum= 0 ; int i; for (i= 0 ;i<ar_count;i++) { sum=sum+ar[i]; } return sum; Read more