Код: Выделить всё
#include
using namespace std;
class Trie{
int a;
Trie * child[26];
};
class Trie2{
int a;
char b;
Trie * child[26];
};
int main()
{
cout
Подробнее здесь: [url]https://stackoverflow.com/questions/79196085/why-is-the-size-of-two-class-objects-same[/url]