RosettaCodeData/Task/Arena-storage-pool/C/arena-storage-pool-4.c
2013-04-10 14:58:50 -07:00

6 lines
223 B
C

/* allocate an array of n MyTypes */
MyType var = calloc(n, sizeof(sMyType));
MyType third = var+3; /* a reference to the 3rd item allocated */
MyType fourth = &var[4]; /* another way, getting the fourth item */