what is the difference between arrays and linked list
Answer Posted / soumen goswami
1)Array has a static storage where as in linked list it is
dynamic.
2)To add some elements in an array is impossible since the
size is predefined.For the same case we can add elements at
the beginning,in the middle and also in the end.
3)To access the data from array is very easy while to access
data from linked list is some complex.
| Is This Answer Correct ? | 25 Yes | 9 No |
Post New Answer View All Answers
how much salary u want ? why u join in our company? your domain is core sector why u prefer software ?
What is a node in c?
What are local variables c?
Explain is it valid to address one element beyond the end of an array?
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
How is pointer initialized in c?
Explain about the constants which help in debugging?
What is the code for 3 questions and answer check in VisualBasic.Net?
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
What language is windows 1.0 written?
Explain the use of 'auto' keyword in c programming?
What are preprocessor directives in c?
What are local static variables? How can you use them?
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
Write a program to find factorial of a number using recursive function.