Illustrates the way to assign an address to an element of a pointer array?
Answer: We can assign a memory address to an element of an array of pointers by using the address operator, that is the ampersand (&), within an assignment statement like ptemployee[1] = &projects[3].