Explain the use of vtable.


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

Post New Answer

More C++ General Interview Questions

How is c++ used in the real world?

0 Answers  


What is the type of this pointer in c++?

0 Answers  


Give example of a pure virtual function in c++?

0 Answers  


make a middle node of doubly linklist to the top of the list

1 Answers  


What is std namespace in c++?

0 Answers  






Find out the bug in this code,because of that this code will not compile....... #include <iostream> #include <new> #include <cstring> using namespace std; class balance { double cur_bal; char name[80]; public: balance(double n, char *s) { cur_bal = n; strcpy(name, s); } ~balance() { cout << "Destructing "; cout << name << "\n"; } void set(double n, char *s) { cur_bal = n; strcpy(name, s); } void get_bal(double &n, char *s) { n = cur_bal; strcpy(s, name); } }; int main() { balance *p; char s[80]; double n; int i; try { p = new balance [3]; // allocate entire array } catch (bad_alloc xa) { cout << "Allocation Failure\n"; return 1; }

2 Answers   Impetus,


Is it possible to use a new for the reallocation of pointers ?

0 Answers  


Why are pointers used?

0 Answers  


Explain the advantages of using friend classes.

0 Answers  


What is do..while loops structure?

0 Answers  


What c++ library is string in?

0 Answers  


Is java as fast as c++?

0 Answers  


Categories