August 1999
Beginner to intermediate
912 pages
15h 44m
English
Explore the fundamental data types
Get acquainted with derived data types
Learn to use variables and constants antonyms from the thesaurus
Discover how to resolve the scope of variables and constants
Understand declarations and definitions
See how to cast data types
At its most basic level, a computer program performs an operation on some data and produces a result. Because C++ is a strongly typed language, each piece of data—that is, each data element—must have a specific data type. Technically speaking, a data type describes a set of values and the operations that can be applied to that set. In layman’s terms, a data type determines how the ...