cobol-interpreter-lab/lab-5/samples/array_write.c

5 lines
57 B
C

a = [ 3, 5, 7, 9, 11];
print a[1];
a[1] = 6;
print a[1];