1 2 #define BUFFER_SIZE 32 3 struct PointType { 4 int x; 5 int y; 6 int buffer[BUFFER_SIZE]; 7 }; 8 9 int g_global = 123; 10 static int s_global = 234; 11 main(int argc,char const * argv[])12int main(int argc, char const *argv[]) { 13 static float s_local = 2.25; 14 PointType pt = { 11,22, {0}}; 15 for (int i=0; i<BUFFER_SIZE; ++i) 16 pt.buffer[i] = i; 17 return s_global - g_global - pt.y; // breakpoint 1 18 } 19