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