What's the difference between a linked list and an array?
Answer Posted / n.muthukumar
A linked list consists of data nodes, each pointing to the
next in the list. An array consists of contiguous chunks
memory of predetermined size.
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
How can a program be made to print the name of a source file where an error occurs?
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
Which header file is used for clrscr?
Subtract Two Number Without Using Subtraction Operator
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
What do you mean by scope of a variable in c?
Why do we need arrays in c?
disply the following menu 1.Disply 2.Copy 3.Append; as per the menu do the file operations 4.Exit
What is function pointer c?
Differentiate between functions getch() and getche().
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
In a byte, what is the maximum decimal number that you can accommodate?
Explain how can you be sure that a program follows the ansi c standard?
Write a code to determine the total number of stops an elevator would take to serve N number of people.
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