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
36_array_initialisers.c
00001 #include <stdio.h>
00002 
00003 int Count;
00004 
00005 int Array[10] = { 12, 34, 56, 78, 90, 123, 456, 789, 8642, 9753 };
00006 
00007 for (Count = 0; Count < 10; Count++)
00008     printf("%d: %d\n", Count, Array[Count]);
00009 
00010 int Array2[10] = { 12, 34, 56, 78, 90, 123, 456, 789, 8642, 9753, };
00011 
00012 for (Count = 0; Count < 10; Count++)
00013     printf("%d: %d\n", Count, Array2[Count]);
00014 
00015 
00016 void main() {}
 All Data Structures