InterviewSolution
Saved Bookmarks
| 1. |
What Are Linked List? |
|
Answer» A linked list is composed of NODES that are connected with another. In C programming, linked LISTS are created using POINTERS. Using linked lists is ONE efficient way of utilizing memory for storage. A linked list is composed of nodes that are connected with another. In C programming, linked lists are created using pointers. Using linked lists is one efficient way of utilizing memory for storage. |
|