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
14_if.c
00001 #include <stdio.h>
00002 
00003 int a = 1;
00004 
00005 if (a)
00006     printf("a is true\n");
00007 else
00008     printf("a is false\n");
00009 
00010 int b = 0;
00011 if (b)
00012     printf("b is true\n");
00013 else
00014     printf("b is false\n");
00015 
00016 
00017 void main() {}
 All Data Structures