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 |
Print all the palindrome numbers.If a number is not palindrome make it one by attaching the reverse to it. eg:123 output:123321 (or) 12321
Why dont c comments nest?
can you change name of main()?how?
how memory store byte
Why is c called a structured programming language?
main() { char p[] = "hello world!"; p = "vector"; printf("%s",p); }
2 Answers Vector, Vector India,
What are the functions to open and close the file in c language?
#include<stdio.h> void main() { int =1; printf("%d%d%d",a++,++a,++a); }
What are data structures in c and how to use them?
which of the following go out of the loopo if expn 2 becoming false a.while(expn 1){...if(expn 2)continue;} b.while(!expn 1){if(expn 2)continue;...} c.do{..if(expn 1)continue;..}while(expn 2); d.while(!expn 2){if(expn 1)continue;..}
what is bitwise operator?
Simplify the program segment if X = B then C ← true else C ← false