Since on most machines, an int is bigger than a char, the vector<int> will allocate more memory than a vector<char>.Hi,
If I create a vector<int> of 100 elements and a vector<char> of 100 elements, will there be any difference in the total memory used by them? or which is more efficient?
Thanks,Lloyd
-- Richard Damon