what is the difference between arrays and linked list
Answer Posted / manikandan.s
Array is a collection of similar data-items and stored in sequence order with fixed size of memory.
But lined list contains collection of node. Each node link between other node and pointer is used to identify the position. Node consists of element and address of next element.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1
What is the use of in c?
Are there any problems with performing mathematical operations on different variable types?
What is the difference between typedef and #define?
Why is c known as a mother language?
Difference between pass by reference and pass by value?
Whats s or c mean?
How would you use the functions fseek(), freed(), fwrite() and ftell()?
Write a program to reverse a linked list in c.
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
Is exit(status) truly equivalent to returning the same status from main?
any function have arguments one or more OR not . it is compulsary a) any function compulsary have one or more arguments b) any function did not have arguments. It is not compulsary c) it is optional it is not compulsary d) none of the above
What are global variables and explain how do you declare them?
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???