C++ Tutorial

C++ Classes

Classes & Objects

Classes model real-world entities with properties and methods.

class Course {
public:
  std::string title;
  Course(std::string t) : title(t) {}
};
Try it Yourself
Run this CPP example in your local environment or course sandbox.