char **notAnArray; O the code creates a pointer array o the code creates an array of pointers o the code is used to create an array on the heap in continuous memory o the code creates a reference variable that will become an array of pointers LINE 1: int size = 8888; LINE 2: PERSON ** people; LINE 3: people = calloc(size, sizeof(PERSON*)); LINE 4: people[0] = calloc(1, sizeof(PERSON))