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
44_scoped_declarations.c
00001 #include <stdio.h>
00002 
00003 int a;
00004 
00005 for (a = 0; a < 2; a++)
00006 {
00007     int b = a;
00008 }
00009 
00010 printf("it's all good\n");
00011 
00012 void main() {}
 All Data Structures