#include<stdio.h> #include<conio.h> void main() { int a[20],i,sum=0; float avg=0; printf(“\n Enter the element:”); for(i=0;i<20;i++) { scanf(“%d”,&a[i]); } printf(“\n The elements...
#include<stdio.h> #include<conio.h> void main() { int a[10],i; printf(“\n Enter the element:”); for(i=0;i<10;i++) { scanf(“%d”,&a[i]); } printf(“\n The elements in the...