Here is an example for a variable, which is a function (function-pointer, actually): int (*myfun)(const char *s); myfun = puts; myfun ("Hello, world");
The average of a set of numbers is equal to the sum of those numbers divided by the number of numbers. So, one might say that the average function is equal to the sum function divided by the count...