Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Zortech C++ Language Reference - sc_specifiers - auto static extern register http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
   sc_specifiers - auto static extern register

   These  are  storage class specifiers.  Declarations  using  the  auto,
   static  and register specifiers also serve as definitions in that they
   cause an appropriate amount of storage to be reserved.

   If  an  extern  declaration  is not a  definition,  there  must  be  a
   definition for the given identifiers somewhere else.

   A register declaration is best thought of as an auto declaration,  the
   address operator & can not be applied to them.

   The  auto or register specifiers can only be used for names of objects
   declared in a block and for formal arguments.  There can be no  static
   functions within a block, nor any static formal arguments.

   The  static or extern specifiers can only be used for names of objects
   or functions.


Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson