// Source file: utile.h // This file contains utility functions #include #include void PrintTitle (void); void PrintDate (void); void PauseScreen (void); void PrintTitle() //Function to display company title { cout << " Fanzone Stock Company\n"; } void PrintDate () //Function to display current date { char datebuf[9]; char timebuf[9]; _strdate(datebuf); _strtime(timebuf); cout << " Date: " << datebuf << " Time: " << timebuf << '\n'; } void PauseScreen () //Function to pause screen { cout << "\n\n Press Enter to continue "; cin.get(); }