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 |
? ???Mirror Mirror on the wall????????
How do I use strcmp?
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
Differentiate between #include<...> and #include '...'
What are predefined functions in c?
C program code int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
what is the disadvantage of using macros?
What does static variable mean in c?
what is the function of .h in #include<stdio.h> in c ?
23 Answers HCL, IBM, Wipro,
find the output of the following program main() { int x=5, *p; p=&x; printf("%d",++*p); }
write a program in c to print **** * * * * ****
What is the use of #define preprocessor in c?