picoc/tests/09_do_while.c
zik.saleeba 65db9a490a Added tests for functions, while and do..while
git-svn-id: http://picoc.googlecode.com/svn/trunk@88 21eae674-98b7-11dd-bd71-f92a316d2d60
2009-02-19 11:00:51 +00:00

17 lines
123 B
C

int a;
int p;
int t;
a = 1;
p = 0;
t = 0;
do
{
printint(a);
t = a;
a = t + p;
p = t;
} while (a < 100);