what is the difference between arrays and linked list
Answer Posted / sumit thokal
arrays are linear data structure
while linked lists are linear and non-linear
in case of linked list :-from point of access strategy it
is linear and from point of storage strategy it is non
linear
| Is This Answer Correct ? | 234 Yes | 57 No |
Post New Answer View All Answers
Is main an identifier in c?
Which is better between malloc and calloc?
What is pragma c?
Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?
How can you find out how much memory is available?
Write a program to identify if a given binary tree is balanced or not.
Explain data types & how many data types supported by c?
Multiply an Integer Number by 2 Without Using Multiplication Operator
What extern c means?
How was c created?
How the c program is executed?
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
How can you draw circles in C?
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
What are the complete rules for header file searching?