![zik.saleeba](/assets/img/avatar_default.png)
Fixes issue #96. git-svn-id: http://picoc.googlecode.com/svn/trunk@509 21eae674-98b7-11dd-bd71-f92a316d2d60
25 lines
211 B
C
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;
|
|
}
|