Please send questions to
st10@humboldt.edu .
#include <iostream>
#include "printBeerVerse.h"
using namespace std;
// oh, just a quick'n'dirty test of printBeerVerse....
// but, now it verifies how the argument is NOT
// changed by the call...
//
// by: Sharon M. Tuttle
// last modified: 10-28-03
int main()
{
int bottleNum;
// test calls to beer verse function
bottleNum = 89;
printBeerVerse(bottleNum);
cout << endl << "bottlenNum after call: "
<< bottleNum << endl;
bottleNum = 1;
printBeerVerse(bottleNum);
cout << endl << "bottlenNum after call: "
<< bottleNum << endl;
return 0;
}