Answer Posted / nashiinformaticssolutions
A specific kind of linked list that allows traversal across the data components in both directions is called a doubly linked list.
Every node has two linkages, one to the node next to it and one to the node in front of it, which enables accomplishing this.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
What functions are used for dynamic memory allocation in c language?
Is c call by value?
Are bit fields portable?
How can I get the current date or time of day in a c program?
Where we use clrscr in c?
Explain what is the benefit of using an enum rather than a #define constant?
What is c token?
Why is event driven programming or procedural programming, better within specific scenario?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
Can we declare function inside main?
What is function and its example?
what will be the output for the following main() { printf("hi" "hello"); }
What is the significance of c program algorithms?
Why can’t constant values be used to define an array’s initial size?