Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Microsoft C - <b>type modifiers keywords that modify data types</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
Type Modifiers           Keywords that Modify Data Types

    Type modifiers are keywords that can be used to prefix a data type in
    a declaration or cast. They modify the type by changing its storage
    size (e.g. short and long) or the way in which it is interpreted
    (e.g. signed and unsigned.) They may even place certain restrictions
    on the type (e.g. const and volatile.)

      Notes:    As shown below, type modifiers may be combined in the
                same declaration. There are two restrictions, however:  a
                declaration may not include both long and short, or both
                signed and unsigned. All other combinations are valid.

                Type modifiers may be specified in any order.

  -------------------------------- Example ---------------------------------

     unsigned long int uli;
     signed short int ssi; const int ci;
     const unsigned short int cusi;
     volatile short int vsi;

See Also: short long signed unsigned const volatile

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