#include #include using namespace std; struct foo { int a; string b; string b1; int c; string b2; string b3; }; struct bar { int a; int c; string b; string b1; string b2; string b3; }; int main(void) { cout << sizeof(foo) << endl; cout << sizeof(bar) << endl; return 0; }