/********************************************************************* Author: Dana Vrajitoru, IUSB, CS Class: C101, Spring 2004 File name: hello_fun.cc Last updated: March 11, 2004. Description: An example of a function definition and call. **********************************************************************/ #include using namespace std; void print_message() { cout << "Hello class" << endl; } int main() { print_message(); return 0; } /************************ Program output ***************************** Hello class **********************************************************************/