//program to find the mode of given 10 elements #include int main() { int a[10],c[20]={0}; // a is an array for storing the given 10 elements and c is an array for storing the count of each numbers from 1 to 20 int n,i,mode; printf("\n enter the number of elements needed"); scanf("%d",&n); printf("\n enter the elements\n "); for(i=0;i