What's the difference between a linked list and an array?
Answer Posted / presto
An array is simply a collection of variables of similar
datatype while a linklist is a collection of nodes where
each node is a combination of a data value and pointer to
another record.
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......
Can you write the algorithm for Queue?
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
Explain what does the format %10.2 mean when included in a printf statement?
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
Should I learn data structures in c or python?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
What are the c keywords?
Explain is it valid to address one element beyond the end of an array?
What does %c do in c?
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
What are the benefits of organizational structure?
How can you avoid including a header more than once?
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
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?