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
Write a program to find factorial of a number using recursive function.
What is a method in c?
What is union and structure?
How to write a code for reverse of string without using string functions?
What is scope and lifetime of a variable in c?
how to find anagram without using string functions using only loops in c programming
What is a global variable in c?
If errno contains a nonzero number, is there an error?
I need a sort of an approximate strcmp routine?
Can a variable be both const and volatile?
What is difference between static and global variable in c?
What is #include stdio h and #include conio h?
is it possible to create your own header files?
What is the use of gets and puts?
How many loops are there in c?