How do you assign an address to an element of a pointer array ?

Submitted by: Administrator
We can assign a memory address to an element of a pointer array by using the address operator, which is the ampersand (&), in an assignment statement such as ptemployee[0] = &projects[2];
Submitted by: Administrator

Read Online Data Structures Job Interview Questions And Answers