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
What is getche() function?
Can we declare variable anywhere in c?
What does the c in ctime mean?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
What are the disadvantages of a shell structure?
Why is #define used?
Explain what is the difference between a string and an array?
What is cohesion in c?
Why c is called a mid level programming language?
What does char * * argv mean in c?
Can we change the value of #define in c?
Why do we use namespace feature?
What is the difference between new and malloc functions?
Explain how does flowchart help in writing a program?
What is the purpose of main( ) in c language?