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++ 3.0r4 - <b>sizeof size of variable or type (unary)</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
sizeof                   Size of Variable or Type (unary)

 sizeof(var)             size of variable (in bytes)
 var                     any variable or variable component (array element,
                         record field)
 sizeof(type)            size of type (in bytes)
 type                    any defined data type

    The sizeof operator returns the size of the specified variable or
    data type in bytes.  The resulting value is of type signed int, so if
    the size is greater than 32767 bytes, the value is negative.

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