Do you know the use of vtable?
No Answer is Posted For this Question
Be the First to Post Answer
Difference between overloaded functions and overridden functions
Does c++ support multilevel and multiple inheritances?
If you don’t declare a return value, what type of return value is assumed?
What is the copy-and-swap idiom?
You run a shell on unix system. How would you tell which shell are you running?
How do you print for example the integers 3,2,1,5,4 in a binary tree within the console in format where it looks like an actual binary tree?
Is swift better than c++?
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; }
What is the main purpose of c++?
What is a v-table?
Write a program using merge () function to combine the elements of array x[ ] and y[ ] into array z[ ].
what is c++