What's the difference between a linked list and an array?
Answer Posted / amneh tanbouz
Link list data is not stored in a contiguous memory, while
an array is a contiguous block of memory that is set aside
to store items of a single data type. also Linked list use
only the amount of memory required to store the data. An
array grabs a block of memory but may not use all of it for
actual storage data.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
How can you return multiple values from a function?
What is a far pointer in c?
Difference between strcpy() and memcpy() function?
regarding pointers concept
Explain what is wrong with this program statement? Void = 10;
What is nested structure with example?
How can you draw circles in C?
How pointer is different from array?
Can we increase size of array in c?
What is use of integral promotions in c?
What is structure and union in c?
all c language question
What is nested structure in c?
Are enumerations really portable?
What is c definition?