// mult_main.cpp // Demonstration of multiple file compilation // CS210 - S'03 // Ray S. Babcock 1/28/03 // #include "main.h" #include "proto.h" int main (void) { int local_main_i(10); int local_max_j(5); cout << "Enter an integer "; cin >> local_main_i; cout << "function one (" << local_main_i << "," << local_max_j << ") = "; cout << mult_fun1(local_main_i, local_max_j) << endl; cout << "function two: "; print_struct(mult_fun2(local_max_j)); cout << "End of program" << endl; }