1#include <stdio.h>2 3typedef struct Pair {4 int f;5 int e;6} Pair;7 8int main() {9 Pair pair = {2, 3};10 printf("break here\n");11 return 0;12}13