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
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
Explain the use of fflush() function?
What is the best way of making my program efficient?
When is a “switch” statement preferable over an “if” statement?
What are the types of macro formats?
What are the types of unary operators?
What does typeof return in c?
Explain how can I make sure that my program is the only one accessing a file?
Why c is faster than c++?
what value is returned to operating system after program execution?
What is structure padding and packing in c?
What is the use of function in c?
What is pointer to pointer in c?
how do you programme Carrier Sense Multiple Access
What is the difference between declaring a variable and defining a variable?