#include #include extern float mean (float x, float y); /* Function to evaluate the mean value of two arguments */ float mean (float x, float y) { return ((x + y) / 2); }