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
45_empty_for.c
00001 #include <stdio.h>
00002 
00003 int main()
00004 {
00005     int Count = 0;
00006     
00007     for (;;)
00008     {
00009         Count++;
00010         printf("%d\n", Count);
00011         if (Count >= 10)
00012             break;
00013     }
00014     
00015     return 0;
00016 }
 All Data Structures