what is the difference between arrays and linked list

Answers were Sorted based on User's Feedback



what is the difference between arrays and linked list..

Answer / debiprasad

in array an element does not contain the reference of next
element.where in link list each element contain reference of
each node.

Is This Answer Correct ?    0 Yes 1 No

what is the difference between arrays and linked list..

Answer / karthikeyan

array
for one type of data ( like int array , char array )
memory should be kept in track and managed by the user.

linked list for multiple type of data

Is This Answer Correct ?    4 Yes 6 No

what is the difference between arrays and linked list..

Answer / mehdin

arrey is very fast in linked list.

Is This Answer Correct ?    4 Yes 10 No

what is the difference between arrays and linked list..

Answer / mesole

in a linked list data are accessed by a means of pointer
WHILE linear array accessed by a means of subcript
insertion, deletion is very easy with linear array while
in a linked list is a little bits complex

Is This Answer Correct ?    25 Yes 41 No

what is the difference between arrays and linked list..

Answer / anu

In arrays v cant delete elements in middle but in Linked
list v can do this.

Is This Answer Correct ?    71 Yes 139 No

what is the difference between arrays and linked list..

Answer / harikrishnan

an array is changable length.a list does not.

Is This Answer Correct ?    17 Yes 124 No

Post New Answer

More C Interview Questions

What is structure padding ?

3 Answers   HP,


WAP to convert text into its ASCII Code and also write a function to decode the text given?

2 Answers  


What is the use of #define preprocessor in c?

0 Answers  


What are lookup tables in c?

0 Answers  


what is the output of the following program? #include<stdio.h> void main() { int x=4,y=3,z; z=x-- -y; printf("\n%d %d %d",x,y,z); }

14 Answers  






What is quick sort in c?

0 Answers  


What is the importance of c in your views?

0 Answers  


what is the difference between c and c++?

7 Answers  


What is the difference between break and continue?

0 Answers  


Why we use stdio h in c?

0 Answers  


Why do we need a structure?

0 Answers  


WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.

0 Answers   Google, Infosys,


Categories