/* // // This is example code from Chapter 27.2 "Functions" of // "Programming -- Principles and Practice Using C++" by Bjarne Stroustrup // */ /*----------------------------------------------------------------------------*/ void print(int); /* print an int */ /*----------------------------------------------------------------------------*/ //void print(const char*); /* print a sting */ /* error! */ /*----------------------------------------------------------------------------*/ void print_int(int); /* print an int */ /*----------------------------------------------------------------------------*/ void print_string(const char*); /* print a sting */ /*----------------------------------------------------------------------------*/