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
Explain what does the function toupper() do?
Why doesn't C support function overloading?
What are the two types of structure?
What happens if a header file is included twice?
How does struct work in c?
What is a constant?
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"
What is 'bus error'?
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
Can we assign string to char pointer?
Explain how do you declare an array that will hold more than 64kb of data?
Is main is user defined function?
Can we replace the struct function in tree syntax with a union?
What is the role of this pointer?