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
31_args.c
00001 #include <stdio.h>
00002 
00003 int main(int argc, char **argv)
00004 {
00005     int Count;
00006 
00007     printf("hello world %d\n", argc);
00008     for (Count = 0; Count < argc; Count++)
00009         printf("arg %d: %s\n", Count, argv[Count]);
00010 
00011     return 0;
00012 }
 All Data Structures