#include using namespace std; void hello(void); void hello(void) { cout << "******" << endl; cout << "Hello" << endl; cout << "******" << endl; } int main() { hello(); return 0; }