What is a Size_t?
What is size_t in C++? size_t is a base unsigned integer type of C/C++ language. It is the type of the result returned by sizeof operator. The type’s size is chosen so that it can store the maximum size of a theoretically possible array of any type. size_t type is usually used for loop counters, … Leggi tutto