Revert "Add predictability in CType initialization."
[tinycc.git] / tests2 / 16_nesting.c
blob2b72cc02818dfacc6544cfcee2dcefda7b51a9ce
1 #include <stdio.h>
3 int main()
5 int x, y, z;
7 for (x = 0; x < 2; x++)
9 for (y = 0; y < 3; y++)
11 for (z = 0; z < 3; z++)
13 printf("%d %d %d\n", x, y, z);
18 return 0;
21 /* vim: set expandtab ts=4 sw=3 sts=3 tw=80 :*/