what is the use of using linked list and array?
Answer Posted / manju
In Linked list we can insert or delete the elements at any
position,which is not possible in arrays and arrays are of
fixed size,but linked lists are not have a definite length.
we can dynamically allocate the size of linked list with
out wastage of memory...
| Is This Answer Correct ? | 4 Yes | 5 No |
Post New Answer View All Answers
Are there namespaces in c?
What is meant by initialization and how we initialize a variable?
How are Structure passing and returning implemented by the complier?
How can you tell whether a program was compiled using c versus c++?
Do you have any idea how to compare array with pointer in c?
Why is it usually a bad idea to use gets()? Suggest a workaround.
Explain void pointer?
Who invented b language?
What is realloc in c?
Can you subtract pointers from each other? Why would you?
Create a simple code fragment that will swap the values of two variables num1 and num2.
an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational
What is anagram in c?
What are runtime error?
develop algorithms to add polynomials (i) in one variable