difference between the array and linked list
general difference related to memory

Answer Posted / shravan katta

array allocated statically
linked list dynamic memory allocation
in the linked list have to remove the node at run time
but can't remove the array node

Is This Answer Correct ?    7 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How can I discover how many arguments a function was actually called with?

858


#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }

925


Should I learn c before c++?

995


Can a pointer be static?

842


What is bss in c?

817


What is structure of c program?

828


What does 3 periods mean in texting?

838


What is equivalent to ++i+++j?

875


How will you print TATA alone from TATA POWER using string copy and concate commands in C?

1180


How can I open a file so that other programs can update it at the same time?

929


What is the difference between break and continue?

977


What does the function toupper() do?

895


What is the code for 3 questions and answer check in VisualBasic.Net?

1926


What is a nested loop?

887


Explain what are the standard predefined macros?

887