modernc.org/ccgo/v3@v3.16.14/lib/testdata/tcc-0.9.27/tests/tests2/16_nesting.c (about) 1 #include <stdio.h> 2 3 int main() 4 { 5 int x, y, z; 6 7 for (x = 0; x < 2; x++) 8 { 9 for (y = 0; y < 3; y++) 10 { 11 for (z = 0; z < 3; z++) 12 { 13 printf("%d %d %d\n", x, y, z); 14 } 15 } 16 } 17 18 return 0; 19 } 20 21 /* vim: set expandtab ts=4 sw=3 sts=3 tw=80 :*/