modernc.org/ccgo/v3@v3.16.14/lib/testdata/tcc-0.9.27/tests/tests2/48_nested_break.c (about)

     1  #include <stdio.h>
     2  
     3  int main()
     4  {
     5     int a;
     6     char b;
     7  
     8     a = 0;
     9     while (a < 2)
    10     {
    11        printf("%d", a++);
    12        break;
    13  
    14        b = 'A';
    15        while (b < 'C')
    16        {
    17           printf("%c", b++);
    18        }
    19        printf("e");
    20     }
    21     printf("\n");
    22  
    23     return 0;
    24  }
    25  
    26  /* vim: set expandtab ts=4 sw=3 sts=3 tw=80 :*/