what is the difference between arrays and linked list
Answer Posted / priya
All elements of array stored in contiguous memory location.
While in case of linked list each node does not stored in
contiguous memory location
| Is This Answer Correct ? | 25 Yes | 6 No |
Post New Answer View All Answers
Why does the call char scanf work?
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
Why are all header files not declared in every c program?
What is meant by operator precedence?
What are the different types of control structures in programming?
PROGRAM TO WRITE CONTENTS OF 1 FILE IN REVERSE TO ANOTHER FILE,PROGRAM TO COPY 1 FILE TO ANOTHER BY SPECIFYING FILE NAMES AS COMMAND LINE
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 is variable in c example?
How can I convert a number to a string?
what are bit fields in c?
What is dynamic memory allocation?
What is #error and use of it?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
What is spark map function?
What is the stack in c?