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
37_sprintf.c
00001 #include <stdio.h>
00002 
00003 char Buf[100];
00004 int Count;
00005 
00006 for (Count = 1; Count <= 20; Count++)
00007 {
00008     sprintf(Buf, "->%02d<-\n", Count);
00009     printf("%s", Buf);
00010 }
00011 
00012 void main() {}
 All Data Structures