Explain Doubly Linked Lists?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / glibwaresoftsolutions
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 |
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 |
What is #error and use of it?
Can the size of an array be declared at runtime?
no consistent academics. how to answer the question
Identify the operators that is not used with pointer a. && b. # c. * d. >>
what is the difference between getch() and getchar()?
Can include files be nested? How many levels deep can include files be nested?
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
when user give a number it multiply with 9 without useing '+' and '*' oprator
if the total selling price of 15 items and the total profit earned on them is input through the keyboard, write a program to find the cost price of one of the item
Is it possible to use curly brackets ({}) to enclose single line code in c program?
different between overloading and overriding
main() { static int ivar=5; printf("%d",ivar--); if(ivar) main(); }