// Dick. cs201/lab/04 // Date Sun Apr 23 11:31:41 PDT 1995 // Teaching how functions work /* This program shows you how a functions work in expressions. To do this it has special tracing commands that report what it is doing. These command use the special diagnostic output channel "cerr". It also shows that you don't have to store a value before printing it. */ #include void main( ) { //Use the following functions int odd(int);//returns true if argument is odd int half(int);//returns half of the aargument int dubl(int);//returns twice the argument int trbl(int);//return three times the argument int next(int);//returns the next whole number after the argument cout<<"4 * 2 ="<