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
Can a program have two main functions?
What is difference between structure and union in c programming?
Can we replace the struct function in tree syntax with a union?
What is #define in c?
Why is c so popular?
largest Of three Number using without if condition?
please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code
What is void main ()?
What are the key features in c programming language?
Write a program to show the change in position of a cursor using c
What is f'n in math?
what is a function method?give example?
code for find determinent of amatrix
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?