picoc/tests/48_nested_break.c
2011-02-11 06:27:54 +00:00

25 lines
211 B
C

#include <stdio.h>
int a;
char b;
a = 0;
while (a < 2)
{
printf("%d", a++);
break;
b = 'A';
while (b < 'C')
{
printf("%c", b++);
}
printf("e");
}
printf("\n");
int main()
{
return 0;
}