what is the use of using linked list and array?
Answer Posted / rani
Linked list has an overhead cost of maintaining reference
pointers it uses. They too consume lot of memory. And this
cost is more in case of doubly linked lists.
Linked lists always provide sequential access. While arrays
give random access.
| Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
What is "Duff's Device"?
What is break in c?
What is difference between far and near pointers?
What are pointers in C? Give an example where to illustrate their significance.
Why c is called top down?
What is use of pointer?
Which is the memory area not included in C program? give the reason
What is the symbol indicated the c-preprocessor?
Which function in C can be used to append a string to another string?
What is malloc and calloc?
What are nested functions in c?
Write a program of advanced Fibonacci series.
Explain what is operator promotion?
What is the use of in c?
Is exit(status) truly equivalent to returning the same status from main?