What's the difference between a linked list and an array?
Answer Posted / noopur
We can allocate memory DYNAMICALLY in linked list where as
in array static allocation of memory is there. In array
contiguous memory allocation procedure is there where as in
linked list we can allocatememory where we want.
| Is This Answer Correct ? | 7 Yes | 2 No |
Post New Answer View All Answers
How can I change the size of the dynamically allocated array?
What is the most efficient way to count the number of bits which are set in an integer?
What is selection sort in c?
What is keyword in c?
What is the process to create increment and decrement stamen in c?
Whats s or c mean?
Why do we use pointer to pointer in c?
Is javascript based on c?
How can I find out how much free space is available on disk?
Can stdout be forced to print somewhere other than the screen?
in iso what are the common technological language?
Explain what is the difference between functions getch() and getche()?
How can I handle floating-point exceptions gracefully?
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
What is static and volatile in c?