CSS Computer Science (Optional) — Paper-I, Section-A, Topic II subtopic. Three closely related, heavily-tested memory concepts.

Arrays

int marks[5] = {90, 85, 78, 92, 88};   // marks[0] = 90 ... marks[4] = 88

Pointers

int x = 10;
int *p = &x;    // p now holds the address of x
*p = 20;         // dereference: changes x to 20, via p

Array–Pointer Relationship