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
35_sizeof.c
00001 #include <stdio.h>
00002 
00003 char a;
00004 short b;
00005 
00006 printf("%d %d\n", sizeof(char), sizeof(a));
00007 printf("%d %d\n", sizeof(short), sizeof(b));
00008 
00009 void main() {}
 All Data Structures