#define BUFFER_SIZE 32 struct PointType { int x; int y; int buffer[BUFFER_SIZE]; }; #include int g_global = 123; static int s_global = 234; int test_indexedVariables(); int main(int argc, char const *argv[]) { static float s_local = 2.25; PointType pt = { 11,22, {0}}; for (int i=0; i small_vector; std::vector large_vector; small_vector.assign(5, 0); large_vector.assign(200, 0); return 0; // breakpoint 4 }