what is the difference between arrays and linked list
Answer Posted / vasu kanneganti
1.array is fixed length and Array is a simple sequence of
numbers which are not concerned about each-others positions
but linked list is variable length
2.in array values are accessing easy but linked list is
some time taken process bcoz search aither forword or
backword
3.in array updating operations are time taken comparing
with linkedlist
4.array is not growble and linkedlist is growble
| Is This Answer Correct ? | 42 Yes | 14 No |
Post New Answer View All Answers
What is getche() function?
Why doesnt the call scanf work?
Is c is a high level language?
Write a program with dynamically allocation of variable.
What does sizeof return c?
How #define works?
how can f be used for both float and double arguments in printf? Are not they different types?
What is ponter?
Why do we need volatile in c?
Is c is a procedural language?
Explain what is wrong in this statement?
What is sizeof int?
What is volatile, register definition in C
What is the basic structure of c?
What is the difference between call by value and call by reference in c?