what is the difference between arrays and linked list
Answer Posted / karthikeyan
array
for one type of data ( like int array , char array )
memory should be kept in track and managed by the user.
linked list for multiple type of data
| Is This Answer Correct ? | 4 Yes | 6 No |
Post New Answer View All Answers
What is the benefit of using #define to declare a constant?
What are local static variables? How can you use them?
Why is c so popular?
What is the use of extern in c?
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
What does the message "automatic aggregate intialization is an ansi feature" mean?
write a program to create a sparse matrix using dynamic memory allocation.
Under what circumstances does a name clash occur?
What is static memory allocation? Explain
What is a struct c#?
Differentiate call by value and call by reference?
Why doesnt long int work?
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
Why do we need functions in c?