What is the return type of sizeof operator? cppreference.com & msdn says sizeof returns size_t. Does it really return a size_t?
I\'m using VS2010 Professional, and targ
The sizeof operator is used to get the size of types or variable in bytes. Returns an unsigned integer type of at least 16 bit. It's used to get portability.
This warning is because of the unsigned integer where is defined the size_t.