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
How can I discover how many arguments a function was actually called with?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
Should I learn c before c++?
Can a pointer be static?
What is bss in c?
What is structure of c program?
What does 3 periods mean in texting?
What is equivalent to ++i+++j?
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
How can I open a file so that other programs can update it at the same time?
What is the difference between break and continue?
What does the function toupper() do?
What is the code for 3 questions and answer check in VisualBasic.Net?
What is a nested loop?
Explain what are the standard predefined macros?