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
29_array_address.c
00001 #include <stdio.h>
00002 #include <string.h>
00003 
00004 char a[10];
00005 strcpy(a, "abcdef");
00006 printf("%s\n", &a[1]);
00007 
00008 void main() {}
 All Data Structures