Answer Posted / 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 |
Post New Answer View All Answers
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
Explain union.
When should a far pointer be used?
What is character constants?
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
What's the right way to use errno?
How can you increase the size of a dynamically allocated array?
Is it possible to pass an entire structure to functions?
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.
Distinguish between actual and formal arguments.
How can a program be made to print the name of a source file where an error occurs?
What is the difference between malloc() and calloc()?
What is the g value paradox?
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
What is the default value of local and global variables in c?