home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH12 / A12141.TXT < prev    next >
Encoding:
Text File  |  1993-09-14  |  353 b   |  7 lines

  1. C++ allows you to perform explicit conversions on built-in types
  2. using casts.  In C++, you may use both C-style casts (where the
  3. target type is in parentheses before the identifier) and
  4. functional notation casts (where the identifier is in parentheses
  5. after the target type).  In functional notation casts, the type
  6. has to be a single identifier.
  7.