What are the advantages and disadvantages of linked lists in C language?

Answer:
Disadvantages:
  1. Extra memory is needed for storing the pointer .
  2. Array can be randomly accessed , while the Linked list cannot be accessed Randomly
  3. Individual nodes are not stored in the contiguous memory Locations.
  4. Access time for Individual Element is O(n) whereas in Array it is O(1).
First answer by ID2057702379. Last edit by ID2057702379. Question popularity: 2 [recommend question].