what is the difference between arrays and linked list
Answer Posted / vky
Some of the above mention answer is nice, i would like to add some more points
Array had certain disadvantages as data storage, in an unordered array, searching is slow ,whereas in ordered array insertion is slow,In both kind of array deletion is slow
but in the case of link list it becomes very simple, like if we have to insert a new number create a new object of list and change the pointing reference
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
What is void c?
What is the difference between class and object in c?
What is the difference between text and binary i/o?
What is the purpose of type declarations?
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
What is difference between far and near pointers?
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
What is the use of getchar() function?
What is the best way to store flag values in a program?
How can I ensure that integer arithmetic doesnt overflow?
What happens if a header file is included twice?
What are the different types of data structures in c?
what is the function of pragma directive in c?
When should we use pointers in a c program?