Homework
Make sure you have a working C++ compiler available to you
Make sure you can compile and run a simple C++ program, such as this:
#include <iostream.h>
class hi {
public:
hi() { cout << “Hello, world\n”; }
};
main()
{
// “there” is an instance of class “hi”
hi there;
}
Previous slide
Back to first slide
View graphic version