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

  1. The sizeof operator returns the size, or storage requirement, of
  2. its argument.  The return value is an integer and the size of a
  3. character is always 1.  The argument can be the identifier of an
  4. object, or a type keyword enclosed in parentheses.  Note that if
  5. the argument is a pointer, sizeof() returns the size of a pointer,
  6. not the object that is pointed to.
  7.