/* Standard Deviation - Calculate standard deviation of n numbers */ #include #include #include void main() { int i, n, x[50] ; float avg, std, sum = 0, s = 0 ; clrscr() ; printf("Enter the number of elements: ") ; scanf("%d", &n) ; printf("Enter the elements: \n") ; for(i=0 ; i