what is the difference between arrays and linked list
Answer Posted / bhaskar diwakar
Linked list->1.insertion & Deletion is very easy compare to
Array.
2.only Sequential Searching Allow
3.Dynamic memory allocation
4.collection of non homogenous data
Array->use to both sequential & non sequential
searching(binary search)
2.collection of homogenous data
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Explain how does free() know explain how much memory to release?
What do you mean by command line argument?
What is const keyword in c?
what is the significance of static storage class specifier?
Why we write conio h in c?
Explain goto?
Are there constructors in c?
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
Who invented bcpl language?
What is the difference between malloc() and calloc()?
What is indirection? How many levels of pointers can you have?
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.
Explain two-dimensional array.
How many types of functions are there in c?
Write a code of a general series where the next element is the sum of last k terms.