/*write a c program to input N real numbers and to find mean,variance and standard deviation */ #include #include void main() { float a[15],avg,var,std,sum,sqsum; int i,n; printf("\n Enter the n size of the array"); scanf("%d",&n); printf("\nEnter the array:"); for(i=0;i