48_nested_break.c 313 B

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