// 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 "cout". It also shows that you don't have to store a value before printing it. */ #include using namespace std; //-------------------------------- int odd(int n) //returns 1 if n is odd and 0 otherwise { cout<<"\n\tEntering 'odd' with n equal to "<