Searching for: Access Modifiers in C++
Inheritance
Language: C++

Inheritance is used to inherit another class' members, including fields and methods. A derived class inherits a base class' members.

Class Declaration & Structure
Language: C++

Classes are a blueprint for creating individual objects that contain the general characteristics of a defined object type.

Array
Language: C++

Arrays are used to assign a series of elements of the same type in consecutive memory locations; to define a list of elements. They work similar to variables, except they contain multiple values at different indices.

Functions
Language: C++

A function is a block of code that can be called from another location in the program or class. It is used to reduce the repetition of multiple lines of code. The return statement concludes the execution of the block of code. The function can either return a value (of dataType, declared in the function header), or return nothing (use the 'void' dataType). Within classes, functions are known are 'Methods'.