/* HW.cpp program to demonstrate "Hello, World" function */ #include using namespace std; //function prototypes void printHW(); int main(){    printHW();    // function call return 0; } /* printHW() -------------------------- "Hello, World" function */ void printHW(){     cout << "Hello World" << endl; }