Embed presentation
Download to read offline


There are four main types of data types in C++ language: primitive, array, enumeration, and structure. Primitive data types include integer, character, and floating point types that can represent basic values. Array and pointer data types allow grouping data of the same type. Enumeration data types define a set of named integer constants. Structure data types define a record that consists of one or more variables of different data types grouped together under a single name.

