what is the difference between arrays and linked list
Answer Posted / manikandan.s
Array is a collection of similar data-items and stored in sequence order with fixed size of memory.
But lined list contains collection of node. Each node link between other node and pointer is used to identify the position. Node consists of element and address of next element.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is typedef struct in c?
How will you declare an array of three function pointers where each function receives two ints and returns a float?
What is the difference between a function and a method in c?
What is d'n in c?
What is external variable in c?
Explain how do I determine whether a character is numeric, alphabetic, and so on?
What is a double c?
Can you subtract pointers from each other? Why would you?
What is huge pointer in c?
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
which is an algorithm for sorting in a growing Lexicographic order
What is structure in c definition?
How do I round numbers?
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file
What the different types of arrays in c?