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
33_ternary_op.c
00001 #include <stdio.h>
00002 
00003 int Count;
00004 
00005 for (Count = 0; Count < 10; Count++)
00006 {
00007     printf("%d\n", (Count < 5) ? (Count*Count) : (Count * 3));
00008 }
00009 
00010 void main() {}
 All Data Structures