Agenda

  1. Data Types in C++
  2. Type Modifiers
  3. Type Qualifiers
  4. Structure in C++
  5. Access Specifiers in Structures
  6. Inline Functions
  7. Function Overloading
  8. Default Arguments in Functions
  9. Namespaces
  10. Classes and Objects
  11. Console I/O Operations
  12. Naming Conventions
  13. Menu-Driven Code

1. Data Types in C++

A data type describes three aspects of a variable or object:

  1. Memory - How much space is required to store data.
  2. Nature - What kind of data is stored.
  3. Operations - Which operations are allowed on the stored data.