#include using namespace std; int main() { void banner(void); banner(); cout << "Hello world!" << endl; banner(); } void banner(void) { cout << "******************************************************" << endl; }