what is the difference between arrays and linked list
Answer Posted / thanu
arrays: staticaly allocating memory
easy to traverse
memory wastage
linked list:runtime allocation
difficult to traverse
efficient usag of memory
| Is This Answer Correct ? | 8 Yes | 2 No |
Post New Answer View All Answers
What is a example of a variable?
Can you write a programmer for FACTORIAL using recursion?
What is meant by gets in c?
List some of the dynamic data structures in C?
What is a far pointer in c?
What is a constant?
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only
What is the function of multilevel pointer in c?
Write a program to check armstrong number in c?
How can you convert integers to binary or hexadecimal?
how to create duplicate link list using C???
Write a program on swapping (100, 50)
What is the size of enum in c?
What is the meaning of 2d in c?
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion