iterator1
and iterator2
are two pointers of a structure.
I know that size_t(iterator1 - iterator2)
is to get the length. But how can we use size_t
like that? Is that similar to the forced type conversion like (size_t)(iterator1 - iterator2)
?