What is doubly linked list in c++?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

What is function overloading c++?

0 Answers  


describe private access specifiers?

0 Answers  


How do I make turbo c++ full screen?

0 Answers  


What is the use of class in c++?

0 Answers  


Comment on local and global scope of a variable.

0 Answers  


Difference between delete and delete[]?

5 Answers   Infosys, TCS, Virtusa,


Hi i need to Acess a variable "int Intval" in the below mentioned code .How to Access it guys i am waiting for your reply

3 Answers  


1)#include <iostream.h> int main() { int *a, *savea, i; savea = a = (int *) malloc(4 * sizeof(int)); for (i=0; i<4; i++) *a++ = 10 * i; for (i=0; i<4; i++) { printf("%d\n", *savea); savea += sizeof(int); } return 0; } 2)#include <iostream.h> int main() { int *a, *savea, i; savea = a = (int *) malloc(4 * sizeof(int)); for (i=0; i<4; i++) *a++ = 10 * i; for (i=0; i<4; i++) { printf("%d\n", *savea); savea ++; } return 0; } The output of this two programs will be different why?

5 Answers  


What's the order in which the objects in an array are destructed?

0 Answers  


what Is DCS ? what i will get benefit when i did?

0 Answers  


What are vtable and vptr?

0 Answers  


What are the benefits of pointers?

0 Answers  


Categories