What's the difference between a linked list and an array?
Answer Posted / noopur
We can allocate memory DYNAMICALLY in linked list where as
in array static allocation of memory is there. In array
contiguous memory allocation procedure is there where as in
linked list we can allocatememory where we want.
| Is This Answer Correct ? | 7 Yes | 2 No |
Post New Answer View All Answers
If I have a char * variable pointing to the name of a function ..
When would you use a pointer to a function?
What is #include cctype?
1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321
Is c procedural or functional?
Differentiate between Macro and ordinary definition.
How can you return multiple values from a function?
Why do we use null pointer?
Why do we use namespace feature?
Write a program to print fibonacci series using recursion?
What is the heap?
What is indirection? How many levels of pointers can you have?
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
How many types of functions are there in c?
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above