ARTICLE AD BOX
std::vector<int> v;
sizeof(v) // output is 24
I am trying to figure out where 24 is coming from
when I search I found that some answers like "its two pointers and size_t data members" (8 * 3 = 24)
but when i check the reference there is more member types then 2 pointers and size_t
am I missing something?
