#include <iostream>
#include <string>

struct player {
	std::string name;
};


int main() 
{
	std::cout << sizeof(player) << '\n';
	player p;
	p.name.resize(10000);
	std::cout << "The number of characters in p.name is " << p.name.size() << 
	"\nbut sizeof(player) is still " << sizeof(p);
}