Write a c program to find mean and standard deviation of a given experimental data
Answers
Answered by
1
Input real numbers and find the mean, variance and standard deviation
#include <stdio.h> #include <conio.h> ...
{ float x[MAXSIZE]; ...
clrscr();
printf("Enter the value of N\n"); ...
printf("Enter %d real numbers\n",n); ...
/* Compute the sum of all elements */
for(i=0; i<n; i++) ...
/* Compute varaience and standard deviation */
Answered by
0
Answer:
please mark as brainliest
Attachments:
Similar questions