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 the use of sizeof?
What is difference between function overloading and operator overloading?
Write a program on swapping (100, 50)
What is the explanation for cyclic nature of data types in c?
What are the benefits of organizational structure?
What are the types of data structures in c?
What is dynamic dispatch in c++?
Is c is a high level language?
to print the salary of an employee according to follwing calculation: Allowances:HRA-20% of BASIC,DA-45% of BASIC,TA-10%. Deductions:EPF-8% of BASIC,LIC-Rs.200/-Prof.Tax:Rs.200/- create c language program?
How do you determine a file’s attributes?
What is pointer to pointer in c language?
What are the different types of endless loops?
What is 1d array in c?
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.
What is function prototype in c with example?