home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH03 / A03101.TXT < prev    next >
Encoding:
Text File  |  1993-08-11  |  434 b   |  8 lines

  1. The built-in types are the types that are supplied as part of the
  2. C++ language, as opposed to the types that you define yourself.
  3. These types include the integral types (char, short int, int, long
  4. int, as well as their signed and unsigned variations), the
  5. floating-point types (float, double, and long double), and void.
  6. Other built-in types are derived from these types, including
  7. arrays, pointers, references, and constants.
  8.