Posts

Showing posts from January, 2022

how to calculate sum of the elements in an array Using c Language

                   int  sum= 0 ;          int  i;          for (i= 0 ;i<ar_count;i++)         {             sum=sum+ar[i];         }          return  sum;