When does a name clash occur in c++?
What is c++ namespace?
What is an associative container in c++?
What doescout<<(0==0) print out a) 0 b) 1 c) Compiler error: Lvalue required
Does dev c++ support c++ 11?
Can we define a constructor as virtual in 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; }
Explain rethrowing exceptions with an example?
Can you think of a situation where your program would crash without reaching the breakball, which you set at the beginning of main()?
What is a storage class?
Is c++ a good beginners programming language?
Explain the use of virtual destructor?
How the delete operator differs from the delete[]operator?