home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH07 / A07097.WAV (.mp3) < prev    next >
Waveform Audio File Format  |  1993-11-12  |  375.7 KB  |  1 channel  |  11,025 sample rate  |  35 seconds
Transcription: The operand of the size of operator can be an object or a reference to an object or an expression. Here the first output statement prints the size of the expression x bracket 3. The second output statement prints the size of the array object x. If the operand is a non-array pointer, the value returned by size of is the size of the pointer, not the size of the object that is pointed to. If the operand is a reference, the value returned by size of is the size of the pointer. size of the referenced object. You cannot apply size of to a function or a bit field.