/Simple_Stats

Compute the average, mean, standard deviation for large number of data points without using arrays

Primary LanguageC

Simple_Stats

C program to input a infinate number of real numbers from stdin and find the mean, variance and standard deviation with out using any arrays.

To build: gcc -Wall -O3 -o stats stats.c -lm

To run: cat data | ./stats