picoc/tests/08_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

16 lines
118 B
C

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