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
How do you do dynamic memory allocation in C applications?
What is cohesion and coupling in c?
difference between native and cross compilers
What is structure padding and packing in c?
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
What is difference between class and structure?
Can we use visual studio for c?
What is the purpose of realloc()?
How will you declare an array of three function pointers where each function receives two ints and returns a float?
What are the features of c languages?
How can I recover the file name given an open stream?
What is the meaning of 2d in c?
How can you increase the size of a statically allocated array?
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
How can I do serial ("comm") port I/O?