#include //function prototypes void say_hello(void); void say_goodbye(void); void main(void) { cout <<"This programs calls two functions" << endl; cout <<"Firsta greeting.....here it goes..." << endl; say_hello(); cout <<"Now back into main" << endl; cout <<"Now we call the other function..." << endl; say_goodbye(); cout <<"Back in main. Thats all falks." << endl; } void say_hello(void) { cout <<"This is the hello function" << endl; cout <<"Hello There!!!" << endl; } void say_goodbye(void) { cout <<"This is the goodbye function" << endl; cout <<"Goodbye!!!" << endl; }