Discussion Forum : Integer Types
Question -

The size_t integer type in C++ is?

Options:
A .  Unsigned integer of at least 64 bits
B .  Signed integer of at least 16 bits
C .  Unsigned integer of at least 16 bits
D .  Signed integer of at least 64 bits
Answer: Option C

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.



Was this answer helpful ?
Next Question
Submit Your Solution hear:

Your email address will not be published. Required fields are marked *