What's the difference between a linked list and an array?
Answer Posted / santosh
in array we are having limted memory size(by intializing the
array size).but in the linked list we dont want to intialize
the size because it is the list of elements.there will many
tyes of linked list,by our requirements we can use any one
of the linkedlist.
| Is This Answer Correct ? | 12 Yes | 4 No |
Post New Answer View All Answers
Where register variables are stored in c?
What are dangling pointers? How are dangling pointers different from memory leaks?
What is the difference between a free-standing and a hosted environment?
What is a method in c?
Why do we use int main?
What do you mean by command line argument?
When should I declare a function?
How will you write a code for accessing the length of an array without assigning it to another variable?
what do you mean by inline function in C?
Explain what standard functions are available to manipulate strings?
What is the right type to use for boolean values in c?
What is the difference between declaring a variable by constant keyword and #define ing that variable?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
Do you know what are bitwise shift operators in c programming?
Write a program to reverse a given number in c language?