-
The size_t integer type in C++ is?
-
- Unsigned integer of at least 16 bits
- Signed integer of at least 64 bits
- Signed integer of at least 16 bits
- Unsigned integer of at least 64 bits
- None of these
Correct Option: A
The size_t type is used to represent the size of an object. Hence, it’s always unsigned. According to the language specification, it is at least 16 bits.