home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH07 / A07095.TXT < prev    next >
Encoding:
Text File  |  1993-11-23  |  471 b   |  9 lines

  1. The specifiers auto and register are rarely used explicitly.  They
  2. can be applied only to objects declared in a block or to formal
  3. arguments of functions.  To explicitly declare such objects or
  4. arguments to have auto storage is redundant.  The storage class
  5. register is a hint to the compiler that the object is heavily
  6. used.  Specifying register storage may have no effect, and may, in
  7. some cases, adversely affect the optimization and portability of
  8. your code.
  9.