Welcome to Westonci.ca, your one-stop destination for finding answers to all your questions. Join our expert community now! Join our platform to connect with experts ready to provide precise answers to your questions in different areas. Discover detailed answers to your questions from a wide network of experts on our comprehensive Q&A platform.

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))