What's the difference between a linked list and an array?
Answer Posted / paridhi
An array is simply a collection of variables of similar
datatype while a linklist is a collection of nodes where
each node is a combination of a data value and pointer to
another record.
| Is This Answer Correct ? | 30 Yes | 0 No |
Post New Answer View All Answers
Explain do array subscripts always start with zero?
What is n in c?
Does * p ++ increment p or what it points to?
What are the types of pointers in c?
What is a memory leak? How to avoid it?
Why c is procedure oriented?
write a program to find the given number is prime or not
Why do we write return 0 in c?
What does c mean?
What is a sequential access file?
Multiply an Integer Number by 2 Without Using Multiplication Operator
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
Write a program to print "hello world" without using a semicolon?
How many identifiers are there in c?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.