Xv6 with picoc & Linkage editor  v1.0
The project delineate mutual cohesion between c library, linkage editor ( linker), interpreter and operating system by porting the same on xv6 kernel
 All Data Structures
16_nesting.c
00001 #include <stdio.h>
00002 
00003 int x, y, z;
00004 
00005 for (x = 0; x < 2; x++)
00006 {
00007     for (y = 0; y < 3; y++)
00008     {
00009         for (z = 0; z < 3; z++)
00010         {
00011             printf("%d %d %d\n", x, y, z);
00012         }
00013     }
00014 }
00015 
00016 void main() {}
 All Data Structures