/*
A very simple example of a program that uses a function.
*/
#include<iostream.h>
void PrintHopper(void)
{
cout << "Rear Admiral Grace Murray Hopper, U.S.N., Ph.D." ;
cout << endl ;
}
int main (void)
{
// other code ...
PrintHopper() ;
// other code ...
}