Revert "Add predictability in CType initialization."
[tinycc.git] / tests2 / 08_while.c
blob602ffc737bf917c103b2920e3a8e498422fcfab3
1 #include <stdio.h>
3 int main()
5 int a;
6 int p;
7 int t;
9 a = 1;
10 p = 0;
11 t = 0;
13 while (a < 100)
15 printf("%d\n", a);
16 t = a;
17 a = t + p;
18 p = t;
21 return 0;
24 // vim: set expandtab ts=4 sw=3 sts=3 tw=80 :