Saved Bookmarks
| 1. |
How Do You Assign An Address To An Element Of A Pointer Array ? |
|
Answer» 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]; 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]; |
|