what is the difference between arrays and linked list
Answer Posted / kshama
Array is a simple sequence of numbers which are not
concerned about each-others positions. they are independent
of each-others positions. adding,removing or modifying any
array element is very easy.Compared to arrays ,linked list
is a comlicated sequence of numbers.each number in the
linked list is connected to its previous & next no. via a
link which is nothieng but a pointer.Addition,removal of
no.s in linked list is related to this pointer direction &
linking that no. to the no. which is already present in the
list.
| Is This Answer Correct ? | 137 Yes | 47 No |
Post New Answer View All Answers
Is main a keyword in c?
How the c program is executed?
Explain pointer. What are function pointers in C?
What are header files in c?
Is there any data type in c with variable size?
How many types of operator or there in c?
What is the use of c language in real life?
Explain how do you list files in a directory?
What is the difference between a string and an array?
What is the most efficient way to store flag values?
Why we use break in c?
What is a function simple definition?
What is substring in c?
What are examples of structures?
What is the use of getch ()?