+ 1
What is size_t data type...????
Please elaborate it ... .
3 Respuestas
+ 5
The datatype size_t is unsigned integral type. It represents the size of any object in bytes and returned by sizeof operator. It is used for array indexing and counting. It can never be negative. The return type of strcspn, strlen functions is size_t.
0
It's an unsigned long long int used to represent the size and/or the number of objects