Programming Concepts
Basic Data Types

Fundamentals of Data Storage

Integral Types

Floating Point Types

Characters

 

Character Strings


 

Pointers

Composite Data Types

Composite data types are collections or groupings of multiple data items into a single entity. Different languages provide support for different kinds of composite data types.

Arrays

Structures

Unions

Classes

Programmer-Defined Types

Special Types

Enumerated Types ( Advanced, Optional )

     enum errorType { none = 0, minor1 = 1, minor2, major1 = 100, major2, fatal1 = 1000 };

Related Topics

The following topics are not covered here, but may be found in many books on C/C++;