Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


What's the difference between a linked list and an array?

Answers were Sorted based on User's Feedback



What's the difference between a linked list and an array? ..

Answer / paridhi

An array is simply a collection of variables of similar
datatype while a linklist is a collection of nodes where
each node is a combination of a data value and pointer to
another record.

Is This Answer Correct ?    30 Yes 0 No

What's the difference between a linked list and an array? ..

Answer / shatul

an array allocates continous memory allocation whereas a
linked list does not allocates continous memory,

Is This Answer Correct ?    22 Yes 4 No

What's the difference between a linked list and an array? ..

Answer / div

In an array elments accessing is easy. Accessing time of
1st element and 1000th element is same,but not in linked lists.

Is This Answer Correct ?    14 Yes 1 No

What's the difference between a linked list and an array? ..

Answer / shilpa

array is static ,where we need to intialize the size in
starting , but linkelist is dynamic , we can dynamically
add the any variable in to the list

Is This Answer Correct ?    15 Yes 3 No

What's the difference between a linked list and an array? ..

Answer / valli

Array is statically allocated group. Linked list is
dynamically allocated group.

Is This Answer Correct ?    11 Yes 2 No

What's the difference between a linked list and an array? ..

Answer / santosh

in array we are having limted memory size(by intializing the
array size).but in the linked list we dont want to intialize
the size because it is the list of elements.there will many
tyes of linked list,by our requirements we can use any one
of the linkedlist.

Is This Answer Correct ?    12 Yes 4 No

What's the difference between a linked list and an array? ..

Answer / vikraman85

I accept the answer 2 ,then we can delete the specified
node in the linked list,but the same thing we can't do in
arrays..

Is This Answer Correct ?    10 Yes 3 No

What's the difference between a linked list and an array? ..

Answer / noopur

We can allocate memory DYNAMICALLY in linked list where as
in array static allocation of memory is there. In array
contiguous memory allocation procedure is there where as in
linked list we can allocatememory where we want.

Is This Answer Correct ?    7 Yes 2 No

What's the difference between a linked list and an array? ..

Answer / presto

An array is simply a collection of variables of similar
datatype while a linklist is a collection of nodes where
each node is a combination of a data value and pointer to
another record.

Is This Answer Correct ?    6 Yes 1 No

What's the difference between a linked list and an array? ..

Answer / raja sekhar

In linkedlist,The operations(delete,insert&etc)are eazily
perform.Where as in arrays that is not possible.

Is This Answer Correct ?    4 Yes 1 No

Post New Answer

More C Interview Questions

WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..

0 Answers  


1 1 1 1 2 1 1 3 3 1 1 4 6 4 1

1 Answers  


If you know then define #pragma?

0 Answers  


what will be the out put. #include<stdio.h> void main() { printf("Output:"); printf(1+"vikashpatel"); }//output: ikashpatel

1 Answers   V2 Solutions,


the expression a=30*1000+2768; evalutes to a) 32768 b) -32768 c) 113040 d) 0

1 Answers  


Sir,please help me out with the output of this programme:- #include<stdio.h> #include<conio.h> void main() { int a=18,b=12,i; for(i=a<b?a:b;a%i||b%i;i--); printf("%d %d",i); }

4 Answers  


What is sparse file?

1 Answers  


write a program to find a given no. is divisible by 3 or not without using any arthimetic operators?

3 Answers   Broadcom, TCS,


A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.

0 Answers  


In which header file is the null macro defined?

0 Answers  


wat is the output int main() { char s1[]="Hello"; char s2[]="Hello"; if(s1==s2) printf("Same"); else printf("Diff"); }

3 Answers  


the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b

0 Answers  


Categories