dev/c/shared_lib/mean.c

6 lines
78 B
C
Raw Normal View History

2012-05-21 18:58:30 +04:00
//#include <stdio.h>
double mean(double a, double b) {
return (a+b) / 2;
}