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 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

Once I have used freopen, how can I get the original stdout (or stdin) back?

0 Answers  


What are comments and how do you insert it in a C program?

0 Answers  


What does *p++ do? What does it point to?

0 Answers  


What are the storage classes in C?

0 Answers  


Disadvantages of C language.

0 Answers   Impetus,


Why doesnt this code work?

0 Answers  


main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }

1 Answers   CodeChef,


Write a C program that computes the value ex by using the formula ex =1+x/1!+x2/2!+x3+3!+………….

1 Answers  


How is a pointer variable declared?

0 Answers  


11. Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage

7 Answers   Accenture,


what value is returned to operating system after program execution?

0 Answers  


This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory

0 Answers  


Categories