how to do the total of value in the array ben[20]
have to use function or other ???????
#include<stdio.h>
#include<stdlib.h>
void main()
{
int ben[20];
printf("pls enter 20 no\n");
for (int i=0; i<20; i++)
{
scanf("%d",&ben[i]);
}
system("pause");
}