Include Command: pag_example (original) (raw)
Our main function starts like this:
void main()
{
First we create an object t of the Include_Test class.
Include_Test t;
Definition include.cpp:5
Then we call the example member function
t.example();
void example()
a member function
After that our little test routine ends.
}