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;

Include_Test

Definition include.cpp:5

Then we call the example member function

t.example();

Include_Test::example

void example()

a member function

After that our little test routine ends.

}