what is the difference between arrays and linked list

Answer Posted / sumit thokal

arrays are linear data structure
while linked lists are linear and non-linear
in case of linked list :-from point of access strategy it
is linear and from point of storage strategy it is non
linear

Is This Answer Correct ?    234 Yes 57 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What does the file stdio.h contain?

595


What is static memory allocation? Explain

618


simple program of graphics and their output display

1458


What is const keyword in c?

730


When do we get logical errors?

624






What is a static function in c?

608


#include #include struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

5166


Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me

1447


Why does the call char scanf work?

607


How can I find out if there are characters available for reading?

629


which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above

1401


What are the advantages of using linked list for tree construction?

631


What is the general form of a C program?

589


Explain the difference between malloc() and calloc() in c?

565


how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12

639