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
Explain how do you sort filenames in a directory?
Is struct oop?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
What is a header file?
What is the difference between printf and scanf in c?
What's the right way to use errno?
What's the total generic pointer type?
What is the best organizational structure?
What is the difference between break and continue?
Why do we use static in c?
Difference between strcpy() and memcpy() function?
What is difference between union and structure in c?
Can we declare variable anywhere in c?
Differentiate call by value and call by reference?
Differentiate between full, complete & perfect binary trees.