📖 Samacheer Kalvi · 11th TN - English Medium · Computer Science · Page 239definition

Classes and objects

Chapter 3: 4 · Computer Science

Classes and objects . . Declaration of a class A class is defined in C++ using the keyword class followed by the name of the class. The body of the class is defined inside the curly brackets and terminated either by a semicolon or a list of declarations at the end.

Note The only difference between structure and class is the members of structure are by default public where as it is private in class . class class-name private: variable declaration; function declaration; protected: variable declaration; function declaration; public: variable declaration; function declaration; }; The General Form of a class definition • The class body contains the declaration of its members (Data member and Member functions).

Related topics

Have a question about this topic?

Get an AI answer grounded in your actual textbook — with the exact page reference.

Ask AI about this topic →