Explain the virtual inheritance in c++.
Why c++ is not a pure oop language?
How to allocate memory dynamically for a reference?
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 prototype for that c string function?
How is memory managed in C++?
What is ios flag in c++?
What is the difference between = and == in C?
20 Answers Christ University, Intel,
what is the diff b/n c and c++ a. dynamic scoping b. nested switching c. declaration of variables in any code block d. separation of compilation and linking
How the delete operator differs from the delete[]operator?
Explain the difference between realloc() and free() in c++?
When can you tell that a memory leak will occur?
Why for local variables the memory required to hold the variable is allocated from the program stack and for new its allocated from the heap?